summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows
diff options
context:
space:
mode:
authorRay <[email protected]>2020-08-19 17:39:43 +0200
committerGitHub <[email protected]>2020-08-19 17:39:43 +0200
commit14e12db675480976b3335166017553621bbe8cb9 (patch)
tree0b69a8e74292a32d8a69f428b84447831fb9df0b /.github/workflows
parentb0708c43bf11d5f713c3704fa7aa3466a56e9c2e (diff)
downloadraylib-14e12db675480976b3335166017553621bbe8cb9.tar.gz
raylib-14e12db675480976b3335166017553621bbe8cb9.zip
Update android.yml
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/android.yml12
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'
+