Skip to content

Commit

Permalink
Update gh-release-create.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jcbhmr authored Jul 24, 2024
1 parent 6c33e54 commit b3106c5
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/gh-release-create.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,11 @@ jobs:
- run: |
for f in *; do
pushd "$f"
if [[ $f == *win* ]]; then zip -r "../$f.zip" .
else tar -czf "../$f.tar.gz" .
if [[ $f == *win* ]]; then
zip -r "../$f.zip" .
else
tar -czf "../$f.tar.gz" .
fi
popd
rm -rf "$f"
done
Expand Down

0 comments on commit b3106c5

Please sign in to comment.