Skip to content

Commit 017e565

Browse files
authored
ci(publish): use tarball for macos for now (#699)
Signed-off-by: Chris Gianelloni <[email protected]>
1 parent 2822be5 commit 017e565

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -87,13 +87,7 @@ jobs:
8787
if: startsWith(github.ref, 'refs/tags/')
8888
run: |
8989
_filename=${{ env.APPLICATION_NAME }}-${{ env.RELEASE_TAG }}-${{ matrix.os }}-${{ matrix.arch }}.tar.gz
90-
if [[ "${{ matrix.os }}" != "darwin" ]]; then
91-
tar czf ${_filename} ${{ env.APPLICATION_NAME }}
92-
fi
93-
if [[ "${{ matrix.os }}" == "darwin" ]]; then
94-
_filename=${{ env.APPLICATION_NAME }}-${{ env.RELEASE_TAG }}-${{ matrix.os }}-${{ matrix.arch }}.zip
95-
zip -r ${_filename} ${{ env.APPLICATION_NAME }}
96-
fi
90+
tar czf ${_filename} ${{ env.APPLICATION_NAME }}
9791
curl \
9892
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
9993
-H "Content-Type: application/octet-stream" \

0 commit comments

Comments
 (0)