Skip to content

Commit

Permalink
Allow symlinks in release archives (#7).
Browse files Browse the repository at this point in the history
  • Loading branch information
jimafisk committed Oct 31, 2024
1 parent 4729af8 commit 082010b
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 @@ -19,8 +19,8 @@ jobs:

- name: Create ZIP archive
run: |
zip -r osxcross-target.zip . -x ".git/*" ".github/*"
tar -czf osxcross-target.tar.gz --exclude=".git" --exclude=".github" .
zip --symlinks -r osxcross-target.zip . -x ".git/*" ".github/*"
tar --dereference -czf osxcross-target.tar.gz --exclude=".git" --exclude=".github" .
- name: Create Release
env:
Expand Down

0 comments on commit 082010b

Please sign in to comment.