From 645e0461d509c140a2c3f9598eecc36029690e00 Mon Sep 17 00:00:00 2001 From: TheRolf Date: Thu, 25 Feb 2021 18:52:22 +0100 Subject: [PATCH] Final fix for GitHub Actions --- .github/workflows/android.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 115befd..ecf55e5 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -44,8 +44,8 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - tag_name: ${{ github.events.inputs.version || github.ref }} - release_name: ${{ github.events.inputs.version || github.ref }} + tag_name: ${{ github.event.inputs.version || github.ref }} + release_name: ${{ github.event.inputs.version || github.ref }} draft: false prerelease: false - name: Upload Release Asset @@ -56,5 +56,5 @@ jobs: with: upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps asset_path: app/build/outputs/apk/debug/app-debug.apk - asset_name: OptymoNext_${{ github.events.inputs.version || github.ref }}.apk + asset_name: OptymoNext_${{ github.event.inputs.version || github.ref }}.apk asset_content_type: application/vnd.android.package-archive \ No newline at end of file