Skip to content

Commit

Permalink
Improved our cd to get the playStore json file from secrets. (#189)
Browse files Browse the repository at this point in the history
  • Loading branch information
MohitMaliFtechiz authored Oct 31, 2024
2 parents 8c3b3b2 + 2585d77 commit 4bd138f
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,19 @@ 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] || '' }}
if [ -n "$non_kiwix_playstore_json" ]; then
echo "$non_kiwix_playstore_json" > kiwix-android/playstore.json
if [ -n "${{ secrets[env.non_kiwix_organization_tag] }}" ]; then
echo "${{ secrets[env.non_kiwix_organization_tag] }}" > kiwix-android/playstore.json
else
echo "$playstore_json" > kiwix-android/playstore.json
fi
Expand Down Expand Up @@ -135,7 +138,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 4bd138f

Please sign in to comment.