From 0cc5174bf26853cbf982963253edcd088cc94e97 Mon Sep 17 00:00:00 2001 From: skydoves Date: Tue, 26 Mar 2024 15:10:59 +0900 Subject: [PATCH] Remove app distribution workflow --- .github/workflows/app-distribute.yml | 39 ---------------------------- 1 file changed, 39 deletions(-) delete mode 100644 .github/workflows/app-distribute.yml diff --git a/.github/workflows/app-distribute.yml b/.github/workflows/app-distribute.yml deleted file mode 100644 index f51c792..0000000 --- a/.github/workflows/app-distribute.yml +++ /dev/null @@ -1,39 +0,0 @@ -name: App Distribute CI - -on: - push: - branches: - - main - -jobs: - build_virtual_event_sample_app: - name: Build and Distribute VirtualEvent Sample App - runs-on: ubuntu-22.04 - steps: - - uses: actions/checkout@v2 - - name: Set up JDK 11 - uses: actions/setup-java@v2 - with: - distribution: adopt - java-version: 17 - - name: Prepare environment - run: | - git fetch --unshallow - echo "${{ secrets.RELEASE_KEYSTORE }}" > .sign/release.keystore.asc - gpg -d --passphrase "${{ secrets.PASSPHRASE }}" --batch .sign/release.keystore.asc > .sign/release.keystore - echo "${{ secrets.RELEASE_KEYSTORE_PROPERTIES }}" > .sign/keystore.properties.asc - gpg -d --passphrase "${{ secrets.PASSPHRASE }}" --batch .sign/keystore.properties.asc > .sign/keystore.properties - - name: Assemble - run: bash ./gradlew :virtual-event-sample:assembleRelease --stacktrace - - name: Upload APK - uses: actions/upload-artifact@v2 - with: - name: virtual-event-sample-release - path: virtual-event-sample/build/outputs/apk/release/ - - name: Upload artifact to Firebase App Distribution - uses: wzieba/Firebase-Distribution-Github-Action@v1 - with: - appId: ${{secrets.FIREBASE_UI_VIRTUAL_EVENT_SAMPLE_APP_ID}} - token: ${{secrets.FIREBASE_TOKEN}} - groups: stream-testers - file: virtual-event-sample/build/outputs/apk/release/virtual-event-sample-release.apk