diff options
Diffstat (limited to '.github/workflows/android.yml')
| -rw-r--r-- | .github/workflows/android.yml | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 16984e15..a3d2f9a5 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -88,13 +88,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' |
