Skip to content

Commit

Permalink
Chore: Add workflow to build test apk (#596)
Browse files Browse the repository at this point in the history
## Proposed Changes

  - Add a `workflow` to build APK to facilitate reviews.
  • Loading branch information
aanorbel authored Aug 7, 2023
1 parent 29deced commit 9f033e7
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/archive.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# archive creates and publishes an apk for testing
name: archive
on: [push]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'temurin'
- name: checkout
uses: actions/checkout@v2
- run: ./gradlew clean assembleDevFullRelease
- name: uploads dev apk
uses: actions/upload-artifact@v3
with:
name: dev-apk
path: app/build/outputs/apk/devFull/release

0 comments on commit 9f033e7

Please sign in to comment.