Skip to content

Commit

Permalink
missing keys
Browse files Browse the repository at this point in the history
  • Loading branch information
malmstein committed Nov 4, 2024
1 parent 5a32db8 commit f79853a
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/release_production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,34 @@ jobs:
repository: duckduckgo/android
prefix: '5.'

- name: Decode upload keys
uses: davidSchuppa/base64Secret-toFile-action@v2
with:
secret: ${{ secrets.UPLOAD_RELEASE_PROPERTIES }}
fileName: ddg_android_build_upload.properties
destination-path: $HOME/jenkins_static/com.duckduckgo.mobile.android/

- name: Decode key file
uses: davidSchuppa/base64Secret-toFile-action@v2
with:
secret: ${{ secrets.UPLOAD_RELEASE_KEY }}
fileName: ddg-upload-keystore.jks
destination-path: $HOME/jenkins_static/com.duckduckgo.mobile.android/

- name: Decode Play Store credentials file
uses: davidSchuppa/base64Secret-toFile-action@v2
with:
secret: ${{ secrets.UPLOAD_PLAY_CREDENTIALS }}
fileName: api.json
destination-path: $HOME/jenkins_static/com.duckduckgo.mobile.android/

- name: Decode Firebase credentials file
uses: davidSchuppa/base64Secret-toFile-action@v2
with:
secret: ${{ secrets.UPLOAD_FIREBASE_CREDENTIALS }}
fileName: ddg-upload-firebase.json
destination-path: $HOME/jenkins_static/com.duckduckgo.mobile.android/

- name: Clean project
run: |
./gradleW clean
Expand Down

0 comments on commit f79853a

Please sign in to comment.