use precompiled jq

This commit is contained in:
2025-05-03 20:05:47 -07:00
parent 124c0a2681
commit f3d1a5e2f8

View File

@@ -8,7 +8,7 @@ on:
jobs:
build-and-push:
runs-on: ubuntu-latest
runs-on: docker://ubuntu:latest
steps:
# Checkout the repository
- name: Checkout
@@ -16,9 +16,18 @@ jobs:
with:
fetch-depth: 0 # Fetch full history for commit
# Set up workspace
- name: Set up workspace
run: |
mkdir -p $HOME/bin
echo "$HOME/bin" >> $GITHUB_PATH
# Install jq for JSON parsing
- name: Install jq
run: sudo apt-get update && sudo apt-get install -y jq
run: |
curl -L -o $HOME/bin/jq https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64
chmod +x $HOME/bin/jq
jq --version
# Get latest Dogecoin version
- name: Get latest Dogecoin version