diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 00efa79..f7a6864 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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