Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
jimhopkins-wwt committed Jan 22, 2023
1 parent 5ad2805 commit 1c165b7
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/android-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,22 @@ jobs:
- name: Build with Gradle
run: ./gradlew build


- name: Cache build files
id: cache-build
uses: actions/cache@v3
with:
path: app/build


release:
runs-on: ubuntu-latest
needs: build
steps:
steps:
- name: Store apk artifacts
if: steps.cache-build.outputs.cache-hit != 'true'
uses: actions/upload-artifact@v2
with:
name: apk-files-${{ github.sha }}
# android stores build files in app/build - currently in .gitignore so it's not stored from local machine build & tests
path: app/build/outputs/apk/release/
path: app/build/outputs/apk/release/*.apk

0 comments on commit 1c165b7

Please sign in to comment.