Skip to content

Commit

Permalink
perf(actions): upload apk
Browse files Browse the repository at this point in the history
  • Loading branch information
lisonge committed Dec 30, 2023
1 parent 2534e81 commit 3787457
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/Build-Apk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,13 @@ jobs:
with:
name: outputs
path: app/build/outputs

- uses: actions/upload-artifact@v3
with:
name: release
path: app/build/outputs/apk/release

- uses: actions/upload-artifact@v3
with:
name: debug
path: app/build/outputs/apk/debug
10 changes: 10 additions & 0 deletions .github/workflows/Build-Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,16 @@ jobs:
name: outputs
path: app/build/outputs

- uses: actions/upload-artifact@v3
with:
name: release
path: app/build/outputs/apk/release

- uses: actions/upload-artifact@v3
with:
name: debug
path: app/build/outputs/apk/debug

release:
needs: build
permissions: write-all
Expand Down

0 comments on commit 3787457

Please sign in to comment.