Skip to content

Commit

Permalink
Merge pull request #6 from aquamarine5/fix_github_action_push_release
Browse files Browse the repository at this point in the history
Update upload_released.yml
  • Loading branch information
aquamarine5 committed Feb 14, 2024
2 parents 0c841e4 + ba53a9f commit 194735c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/upload_released.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,11 @@ jobs:
- name: Get version code
id: version
run: echo "VERSION=${GITHUB_REF:10}" >> $GITHUB_OUTPUT
- name: Show file tree
run: |
sudo apt-get install tree
tree app/build/outputs
- name: Upload apk file
run: gh release upload ${{steps.version.outputs.VERSION}} app/build/outputs/apk/releases/app-release-unsigned.apk
run: gh release upload ${{steps.version.outputs.VERSION}} app/build/outputs/apk/release/app-release-unsigned.apk
env:
GH_TOKEN: ${{ github.token }}

0 comments on commit 194735c

Please sign in to comment.