Skip to content

Commit

Permalink
Updating release track and status
Browse files Browse the repository at this point in the history
  • Loading branch information
nkuppan committed Jun 6, 2024
1 parent 8dd9ada commit a635b08
Showing 1 changed file with 8 additions and 23 deletions.
31 changes: 8 additions & 23 deletions .github/workflows/publish_play_store.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,29 +36,14 @@ jobs:
- name: Setup Gradle
uses: gradle/gradle-build-action@v2

- name: Load Google Play Distribution File
env:
PLAY_STORE_KEY: ${{ secrets.GOOGLE_PLAY_SERVICE_ACCOUNT_BASE64 }}
run: echo $PLAY_STORE_KEY | base64 -di > play_publish.json

- name: Load Firebase Distribution File
env:
SIGNING: ${{ secrets.SIGNING_PROPERTIES_FILE_BASE64 }}
run: echo $SIGNING | base64 -di > credentials.properties
- name: Set up environment
run: |
echo "${{ secrets.GOOGLE_PLAY_SERVICE_ACCOUNT_BASE64 }}" | base64 -d > ./play_publish.json;
echo "${{ secrets.SIGNING_PROPERTIES_FILE_BASE64 }}" | base64 -d > ./credentials.properties;
echo "${{ secrets.SIGNING_KEYSTORE_FILE_BASE64 }}" | base64 -d > ./android_keystore.jks;
- name: Load Keystore
- name: Deploy
run: ./gradlew publishReleaseBundle uploadCrashlyticsMappingFileRelease
env:
KEYSTORE: ${{ secrets.SIGNING_KEYSTORE_FILE_BASE64 }}
run: echo $KEYSTORE | base64 -di > android_keystore.jks

- name: Setting environment values
env:
PLAYSTORE_TRACK: "production"
PLAYSTORE_TRACK: "beta"
PLAYSTORE_RELEASE_STATUS: "completed"
run: |
echo ${{ env.PLAYSTORE_TRACK}}
echo ${{ env.PLAYSTORE_RELEASE_STATUS}}
- name: Deploy Play Store Beta
run: |
./gradlew --no-configuration-cache publishReleaseBundle uploadCrashlyticsMappingFileRelease

0 comments on commit a635b08

Please sign in to comment.