Skip to content
This repository was archived by the owner on Sep 4, 2024. It is now read-only.

Commit b3898f2

Browse files
committed
test pipeline
1 parent aaf1f08 commit b3898f2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/publish-demo-apks.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,26 +13,26 @@ jobs:
1313
with:
1414
java-version: 1.8
1515
# CryptoDemo
16-
- run: ls
17-
- run: cd cryptodemo/
18-
- run: ls
1916
- name: Build APK
17+
working-directory: ./CryptoDemo
2018
run: bash ./gradlew assembleDebug --stacktrace
2119
- name: Renaming Apk
20+
working-directory: ./CryptoDemo
2221
run: mv app/build/outputs/apk/debug/app-debug.apk app/build/outputs/apk/debug/cryptodemo-debug.apk
2322
- name: Upload APK
23+
working-directory: ./CryptoDemo
2424
uses: actions/upload-artifact@v1
2525
with:
2626
path: app/build/outputs/apk/debug/cryptodemo-debug.apk
27-
- run: cd ../
2827
# Pokedex
29-
- run: cd Pokedex
3028
- name: Build APK
29+
working-directory: ./Pokedex
3130
run: bash ./gradlew assembleDebug --stacktrace
3231
- name: Renaming Apk
32+
working-directory: ./Pokedex
3333
run: mv app/build/outputs/apk/debug/app-debug.apk app/build/outputs/apk/debug/pokedex-debug.apk
3434
- name: Upload APK
35+
working-directory: ./Pokedex
3536
uses: actions/upload-artifact@v1
3637
with:
3738
path: app/build/outputs/apk/debug/pokedex-debug.apk
38-
- run: cd ../

0 commit comments

Comments
 (0)