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 dccba1b
Showing 1 changed file with 20 additions and 10 deletions.
30 changes: 20 additions & 10 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@ name: CD

on:
release:
types: [published]
types: [ published ]
branches:
- main
push:
tags:
- 'testing_dwds'

jobs:
publish:
Expand Down Expand Up @@ -32,19 +35,26 @@ 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: Determine playstore.json file
run: |
if [ -n "${{ secrets[env.NON_KIWIX_ORGANIZATION_TAG] }}" ]; then
echo "CUSTOM_PLAYSTORE_JSON=${{ secrets[env.NON_KIWIX_ORGANIZATION_TAG] }}" >> $GITHUB_ENV
else
echo "CUSTOM_PLAYSTORE_JSON=${{ secrets.PLAYSTORE_JSON }}" >> $GITHUB_ENV
fi
- name: Preparing signing material
env:
keystore: ${{ secrets.keystore }}
playstore_json: ${{ secrets.PLAYSTORE_JSON }}
playstore_json: ${{ env.CUSTOM_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
else
echo "$playstore_json" > kiwix-android/playstore.json
fi
echo "$playstore_json" > kiwix-android/playstore.json
- name: Should upload Bundle
run: |
Expand Down Expand Up @@ -135,7 +145,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 dccba1b

Please sign in to comment.