Skip to content

Commit

Permalink
Cope with bsd coreutils on osx in release script
Browse files Browse the repository at this point in the history
  • Loading branch information
expipiplus1 committed Jul 10, 2024
1 parent 5c9ce37 commit 9ba572d
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 @@ -155,9 +155,9 @@ jobs:
cpack --preset "$config" -G TGZ
triggering_ref=${{ github.ref_name }}
base=slang-${triggering_ref#v}-${{matrix.os}}-${{matrix.platform}}
mv --verbose "$(pwd)/build/dist-${config}/slang.zip" "${base}.zip"
mv "$(pwd)/build/dist-${config}/slang.zip" "${base}.zip"
echo "SLANG_BINARY_ARCHIVE_ZIP=${base}.zip" >> $GITHUB_OUTPUT
mv --verbose "$(pwd)/build/dist-${config}/slang.tar.gz" "${base}.tar.gz"
mv "$(pwd)/build/dist-${config}/slang.tar.gz" "${base}.tar.gz"
echo "SLANG_BINARY_ARCHIVE_TAR=${base}.tar.gz" >> $GITHUB_OUTPUT
- name: File check
Expand Down

0 comments on commit 9ba572d

Please sign in to comment.