Skip to content

Commit

Permalink
Fix nightly pipeline (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
fmeum authored Dec 23, 2024
1 parent dbe6aec commit e5371b0
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,13 @@ jobs:
java-version: 17
distribution: 'zulu'
- name: Assemble with Gradle
run: ./gradlew assembleNightlySigned \
-PcommitCount=$(git rev-list --count HEAD) \
-PcommitHash=$(git rev-parse --short HEAD) \
-PstorePassword="${{ secrets.NIGHTLY_KEYSTORE_PASSWORD }}"
-PkeyPassword="${{ secrets.NIGHTLY_KEYSTORE_PASSWORD }}"
run: ./gradlew \
-PcommitCount=$(git rev-list --count master) \
-PcommitHash=$(git rev-parse --short master) \
-PstorePassword="${{ secrets.NIGHTLY_KEYSTORE_PASSWORD }}" \
-PkeyPassword="${{ secrets.NIGHTLY_KEYSTORE_PASSWORD }}" \
assembleNightlySigned

- name: Upload authenticator APK
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit e5371b0

Please sign in to comment.