Skip to content

Commit

Permalink
Final fix for GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRolfFR committed Feb 25, 2021
1 parent 382a321 commit 645e046
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

0 comments on commit 645e046

Please sign in to comment.