We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2822be5 commit 017e565Copy full SHA for 017e565
.github/workflows/publish.yml
@@ -87,13 +87,7 @@ jobs:
87
if: startsWith(github.ref, 'refs/tags/')
88
run: |
89
_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
+ tar czf ${_filename} ${{ env.APPLICATION_NAME }}
97
curl \
98
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
99
-H "Content-Type: application/octet-stream" \
0 commit comments