Skip to content

Commit

Permalink
chore: change release file extensioin from .gzip to .gz (#266)
Browse files Browse the repository at this point in the history
The gunzip utility doesn't like .gzip as a file extension and complains about extracting it.  Changing the filename to .gz resolves this and enabled tab completion on most Linux (and probably other) systems.
  • Loading branch information
bladeswords authored Dec 17, 2024
1 parent d2b8358 commit 278b119
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
./target/${{ matrix.target }}/release-lto/yara_x_capi.dll.lib \
./target/${{ matrix.target }}/release-lto/yara_x_capi.dll
else
tar czf $pkgname.gzip -C target/${{ matrix.target }}/release-lto yr
tar czf $pkgname.gz -C target/${{ matrix.target }}/release-lto yr
fi
- name: Upload artifacts
Expand Down

0 comments on commit 278b119

Please sign in to comment.