Skip to content

Commit

Permalink
ci: fix issue
Browse files Browse the repository at this point in the history
  • Loading branch information
plusvic committed Mar 25, 2024
1 parent d049924 commit 537840a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ jobs:
set -ex
pkgname=yara-x-${{ matrix.build }}-${{ github.ref_name }}
if [ "${{ matrix.build }}" = "windows" ]; then
7z a $pkgname.zip ./target/release-lto/${{ matrix.target }}/yr.exe
7z a $pkgname.zip ./target/${{ matrix.target }}/release-lto/yr.exe
else
tar czf $pkgname.gzip -C target/release-lto/${{ matrix.target }} yr
tar czf $pkgname.gzip -C target/${{ matrix.target }}/release-lto yr
fi
- name: Upload artifacts
Expand Down

0 comments on commit 537840a

Please sign in to comment.