use precompiled jq
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user