Skip to content

Commit

Permalink
👷 Fix GitHub Action
Browse files Browse the repository at this point in the history
  • Loading branch information
RemiBardon committed Jan 2, 2024
1 parent 1b16516 commit 4f660fb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ jobs:
path: ${{ env.artifacts }}

- name: Archive artifacts
run: for f in '${{ env.artifacts }}'/*; do tar -zcvf "$f".tar.gz "$f"; done
working-directory: ${{ env.artifacts }}
run: for f in *; do tar -zcvf "$f".tar.gz "$f"; done

- name: Release new version
uses: ncipollo/release-action@v1
Expand Down

0 comments on commit 4f660fb

Please sign in to comment.