Skip to content

Commit

Permalink
Add separate APKs-only artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
pcolby committed Jul 12, 2023
1 parent 19d1878 commit f15d685
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,12 @@ jobs:
- uses: gradle/gradle-build-action@v2
- run: ./gradlew build
env:
BUILD_ID: ${{ github.run_number }}.${{ matrix.os }}
BUILD_ID: ${{ github.run_number }}.${{ runner.os }}
- uses: actions/upload-artifact@v3
with:
name: all-build-outputs-${{ runner.os }}
path: app/build/outputs/
- uses: actions/upload-artifact@v3
with:
name: apks
path: app/build/outputs/*/*.apk

0 comments on commit f15d685

Please sign in to comment.