Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
aivanovski committed Jul 21, 2024
1 parent 9a19697 commit 8e8673c
Showing 1 changed file with 27 additions and 1 deletion.
28 changes: 27 additions & 1 deletion .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,25 @@ jobs:
- name: Run tests
run: ./gradlew app:test


print-matrix-data:
name: Print matrix data
runs-on: ubuntu-latest
strategy:
matrix:
include:
- command: assembleGplayDebug
filePath: ./app/build/outputs/apk/gplay/debug/app-gplay-debug.apk
steps:
- name: Print
run: |
echo "command=${{ matrix.command }}"
echo "filePath=${{ matrix.filePath }}"
build-apks:
name: Build apks
name: Build apk files
needs: [ check-code-style, run-tests ]
runs-on: ubuntu-latest
strategy:
Expand All @@ -74,6 +91,15 @@ jobs:
run: |
./gradlew app:assemble${{ matrix.buildType }}
- name: Store APK file
uses: actions/upload-artifact@v3
with:
name: app-gplay-debug.apk
path: |
./app/build/outputs/apk/gplay/debug/app-gplay-debug.apk
#
# build-gplay-debug:
Expand Down

0 comments on commit 8e8673c

Please sign in to comment.