Skip to content

Commit

Permalink
Use GNU tar on OSX runners.
Browse files Browse the repository at this point in the history
Use GNU tar due to a strange issue with BSD tar on OSX runners.

For more information, see: actions/runner-images#2619
  • Loading branch information
tjni committed Feb 21, 2021
1 parent 9d89cf8 commit 372517c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Expand Up @@ -28,7 +28,9 @@ jobs:
- name: Build
run: cargo build --verbose --release
- name: Package
run: tar -zcv -C target/release -f offstage-macos.tar.gz offstage
# Use GNU tar due to a strange issue with BSD tar on OSX runners.
# https://github.com/actions/virtual-environments/issues/2619
run: gtar -zcv -C target/release -f offstage-macos.tar.gz offstage
- uses: actions/upload-artifact@v2
with:
name: macos
Expand Down

0 comments on commit 372517c

Please sign in to comment.