Skip to content

Commit

Permalink
Refactored our CD to get the secrets.
Browse files Browse the repository at this point in the history
* Changed the `upload-artifact` version to 4 since it was giving error.
  • Loading branch information
MohitMaliDeveloper committed Oct 31, 2024
1 parent 8c3b3b2 commit 5affd72
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
types: [published]
branches:
- main
push:
tags:
- 'dwds'

jobs:
publish:
Expand Down Expand Up @@ -32,14 +35,18 @@ jobs:
- name: Install jq
run: sudo apt-get install -y jq

- name: Set non-kiwix organization tag
run: |
non_kiwix_organization_tag="PLAYSTORE_JSON_${TAG}"
echo "NON_KIWIX_ORGANIZATION_TAG=${non_kiwix_organization_tag}" >> $GITHUB_ENV
- name: Preparing signing material
env:
keystore: ${{ secrets.keystore }}
playstore_json: ${{ secrets.PLAYSTORE_JSON }}
run: |
echo "$keystore" | base64 -d > kiwix-android/kiwix-android.keystore
non_kiwix_organization_tag='PLAYSTORE_JSON_'${TAG}
non_kiwix_playstore_json=${{ secrets[non_kiwix_organization_tag] || '' }}
non_kiwix_playstore_json=${{ secrets[env.NON_KIWIX_ORGANIZATION_TAG] || '' }}
if [ -n "$non_kiwix_playstore_json" ]; then
echo "$non_kiwix_playstore_json" > kiwix-android/playstore.json
else
Expand Down Expand Up @@ -135,7 +142,7 @@ jobs:
- name: Upload Bundle as an artifact
if: env.should_publish == 'true'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{ env.bundle_name }}
path: ${{ env.bundle_path }}
Expand Down

0 comments on commit 5affd72

Please sign in to comment.