diff options
| author | Ray <[email protected]> | 2020-08-19 17:39:43 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-08-19 17:39:43 +0200 |
| commit | 14e12db675480976b3335166017553621bbe8cb9 (patch) | |
| tree | 0b69a8e74292a32d8a69f428b84447831fb9df0b /.github/workflows | |
| parent | b0708c43bf11d5f713c3704fa7aa3466a56e9c2e (diff) | |
| download | raylib-14e12db675480976b3335166017553621bbe8cb9.tar.gz raylib-14e12db675480976b3335166017553621bbe8cb9.zip | |
Update android.yml
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/android.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 9b1ceb65..0ccdc230 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -52,3 +52,15 @@ jobs: with: name: ${{ env.RELEASE_NAME }}.tar.gz path: ./build/${{ env.RELEASE_NAME }}.tar.gz + + - name: Upload Artifact to Release + uses: actions/[email protected] + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ github.event.release.upload_url }} + asset_path: ./build/${{ env.RELEASE_NAME }}.zip + asset_name: ${{ env.RELEASE_NAME }}.zip + asset_content_type: application/zip + if: github.event_name == 'release' && github.event.action == 'published' + |
