Skip to content

Commit

Permalink
Merge pull request #33 from cuappdev/main
Browse files Browse the repository at this point in the history
Test trigger CI build 1
  • Loading branch information
thisjustin123 authored Sep 5, 2024
2 parents c65404e + 21a3357 commit 0c551ea
Showing 1 changed file with 67 additions and 0 deletions.
67 changes: 67 additions & 0 deletions .github/workflows/publish-to-play-store-beta.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
name: Publish to Google Play Store Beta

on:
push:
branches: [ prod-test ]

jobs:
build:
runs-on: ubuntu-latest

env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8

- name: Build with Gradle
id: build
run: ./gradlew build

- name: Build the app
id: buildRelease
run: ./gradlew bundleRelease

- name: Sign AAB
id: sign
uses: r0adkll/sign-android-release@v1
with:
releaseDirectory: app/build/outputs/bundle/release
signingKeyBase64: ${{ secrets.KEYSTORE }}
alias: ${{ secrets.KEY_ALIAS }}
keyStorePassword: ${{ secrets.KEYSTORE_PASSWORD }}
keyPassword: ${{ secrets.KEY_PASSWORD }}

- name: Upload AAB
id: uploadArtifact
uses: actions/upload-artifact@v1
with:
name: app
path: app/build/outputs/bundle/release/app-release.aab

- name: Create service_account.json
id: createServiceAccount
run: echo '${{ secrets.PLAY_STORE_JSON }}' > service_account.json

- name: Deploy to Play Store (BETA)
id: deploy
uses: r0adkll/upload-google-play@v1
with:
serviceAccountJson: service_account.json
packageName: ${{ secrets.PACKAGE_NAME }}
releaseFile: app/build/outputs/bundle/release/app-release.aab
track: beta
whatsNewDirectory: whatsnew/

- name: Notify on Slack
uses: act10ns/slack@v1
with:
status: ${{ job.status }}
steps: ${{ toJson(steps) }}
if: always()

0 comments on commit 0c551ea

Please # to comment.