Skip to content

Commit

Permalink
Fix macOS release archive format (dhall-lang#2367)
Browse files Browse the repository at this point in the history
macOS tar doesn't compress with bzip2 purely based on `tar.bz2` extension, `-j` must be provided.

Fixes dhall-lang#2366
  • Loading branch information
koterpillar authored Jan 17, 2022
1 parent 2df2a51 commit de7d772
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
os:
- runner: 'macOS-latest'
package: 'macos'
archive-command: 'tar --create --file'
archive-command: 'tar --create -j --file'
file-extension: 'tar.bz2'
executable-extension: ''
- runner: 'ubuntu-latest'
Expand Down

0 comments on commit de7d772

Please sign in to comment.