Skip to content

Commit

Permalink
updated the CI to reflect the changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ArthurKun21 committed Dec 31, 2023
1 parent 323ea90 commit 7be4cc1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
if [[ ${{ github.ref }} == "refs/heads/master" ]]; then
./gradlew assembleCi --scan --parallel --no-daemon
else
./gradlew assembleAlpha --scan --parallel --no-daemon
./gradlew assembleDev --scan --parallel --no-daemon
fi
- name: Upload APK
Expand All @@ -80,7 +80,7 @@ jobs:
if [[ ${{ github.ref }} == "refs/heads/master" ]]; then
app/build/outputs/apk/ci/app-ci.apk
else
app/build/outputs/apk/alpha/app-alpha.apk
app/build/outputs/apk/dev/app-dev.apk
fi
- name: Upload De-obfuscation mapping file
Expand All @@ -91,7 +91,7 @@ jobs:
if [[ ${{ github.ref }} == "refs/heads/master" ]]; then
app/build/outputs/mapping/ci/mapping.txt
else
app/build/outputs/mapping/alpha/mapping.txt
app/build/outputs/mapping/dev/mapping.txt
fi
# Release master branch
Expand Down

0 comments on commit 7be4cc1

Please sign in to comment.