Skip to content

Commit

Permalink
fix: 🐛 target dir fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dfrnoch committed May 19, 2023
1 parent 3ce6bfe commit 747803d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

- name: 📦 Create Archive
run: |
cd $CARGO_TARGET_DIR/release
cd target/${{ matrix.target }}/release
if [[ "${{ matrix.archive }}" == "zip" ]]; then
zip -r ${{ matrix.target }}.zip *
else
Expand All @@ -42,4 +42,4 @@ jobs:
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: ${{ matrix.target }}.${{ matrix.archive }}
files: ${{ matrix.target }}.${{ matrix.archive }}

0 comments on commit 747803d

Please sign in to comment.