diff options
Diffstat (limited to '.github/workflows/linux.yml')
| -rw-r--r-- | .github/workflows/linux.yml | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index db989e24..976b67bf 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -100,12 +100,9 @@ jobs: path: ./build/${{ env.RELEASE_NAME }}.tar.gz - name: Upload Artifact to Release - uses: actions/[email protected] + uses: softprops/action-gh-release@v1 + with: + files: ./build/${{ env.RELEASE_NAME }}.tar.gz env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - upload_url: ${{ github.event.release.upload_url }} - asset_path: ./build/${{ env.RELEASE_NAME }}.tar.gz - asset_name: ${{ env.RELEASE_NAME }}.tar.gz - asset_content_type: application/gzip - if: github.event_name == 'release' && github.event.action == 'published' + if: github.event_name == 'release' && github.event.action == 'published' |
