Skip to content

Commit

Permalink
ci: fix publish (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
justprosh authored Jul 6, 2022
1 parent b9a996e commit edc7dc4
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,13 @@ jobs:
- name: Set env
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV

- run: mkdir -p ~/.bin
- run: echo "~/.bin" >> $GITHUB_PATH

- name: Download jq
run: |
curl -L https://github.com/stedolan/jq/releases/download/jq-1.5/jq-linux64 -o /usr/local/bin/jq
chmod +x /usr/local/bin/jq
curl -L https://github.com/stedolan/jq/releases/download/jq-1.5/jq-linux64 -o ~/.bin/jq
chmod +x ~/.bin/jq
- name: Download marine
run: bash $GITHUB_WORKSPACE/.github/download_marine.sh
Expand Down

0 comments on commit edc7dc4

Please sign in to comment.