Skip to content

Commit

Permalink
Merge pull request #10 from alexmercerind/ci
Browse files Browse the repository at this point in the history
ci: artifact/release name
  • Loading branch information
alexmercerind authored Dec 2, 2023
2 parents d134760 + a3f4b85 commit 566326e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,13 @@ jobs:
alias: ${{ secrets.ALIAS }}
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }}
keyPassword: ${{ secrets.KEY_PASSWORD }}
- name: Copy release APK
run: cp ${{ steps.sign_app.outputs.signedReleaseFile }} ./app/build/outputs/apk/release/app-release-signed.apk
- name: Upload artifact
uses: actions/upload-artifact@v1
with:
name: app-release
path: ${{ steps.sign_app.outputs.signedReleaseFile }}
path: ./app/build/outputs/apk/release/app-release-signed.apk
- name: GitHub release
uses: softprops/action-gh-release@v1
if: github.ref == 'refs/heads/main'
Expand All @@ -51,4 +53,4 @@ jobs:
tag_name: "vnext"
token: ${{ secrets.ACCESS_TOKEN }}
files: |
${{ steps.sign_app.outputs.signedReleaseFile }}
./app/build/outputs/apk/release/app-release-signed.apk

0 comments on commit 566326e

Please sign in to comment.