Skip to content

Commit

Permalink
Upload apk for Android (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
geoff-powell authored Jan 15, 2024
1 parent 8a1d4e1 commit 97cd51d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@ jobs:
- name: Build with Gradle
run: ./gradlew composeApp:assembleDebug -Pbuild-numeber=${{ needs.build-number.outputs.build-number }}

- name: Upload App
uses: actions/upload-artifact@v4
with:
name: Android Debug Archive
path: ${{ github.workspace }}/**/build/**/*.apk

build-release:
runs-on: ubuntu-latest
steps:
Expand All @@ -53,6 +59,12 @@ jobs:
- name: Build with Gradle
run: ./gradlew composeApp:assembleRelease -Pbuild-numeber=${{ needs.build-number.outputs.build-number }}

- name: Upload App
uses: actions/upload-artifact@v4
with:
name: Android Release Archive
path: ${{ github.workspace }}/**/build/**/*.apk

test:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 97cd51d

Please sign in to comment.