Prepare V6.0.0-beta3 version #3038
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: App Distribute CI | |
on: | |
push: | |
branches: | |
- develop | |
- main | |
- release | |
- v5 | |
jobs: | |
build_ui_components_sample_app: | |
name: Build and Distribute UI Components Sample App | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up JDK 11 | |
uses: actions/[email protected] | |
with: | |
distribution: adopt | |
java-version: 11 | |
- 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 :stream-chat-android-ui-components-sample:assembleDemoRelease --stacktrace | |
- name: Upload APK | |
uses: actions/[email protected] | |
with: | |
name: stream-chat-android-ui-components-sample-release | |
path: stream-chat-android-ui-components-sample/build/outputs/apk/demo/release/ | |
- name: Upload artifact to Firebase App Distribution | |
uses: wzieba/Firebase-Distribution-Github-Action@v1 | |
with: | |
appId: ${{secrets.FIREBASE_UI_SAMPLE_APP_ID}} | |
token: ${{secrets.FIREBASE_TOKEN}} | |
groups: stream-testers | |
file: stream-chat-android-ui-components-sample/build/outputs/apk/demo/release/stream-chat-android-ui-components-sample-demo-release.apk | |
build_compose_sample_app: | |
name: Build and Distribute Compose Sample App | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up JDK 11 | |
uses: actions/[email protected] | |
with: | |
distribution: adopt | |
java-version: 11 | |
- 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 :stream-chat-android-compose-sample:assembleRelease --stacktrace | |
- name: Upload APK | |
uses: actions/[email protected] | |
with: | |
name: stream-chat-android-compose-sample-release | |
path: stream-chat-android-compose-sample/build/outputs/apk/release/ | |
- name: Upload artifact to Firebase App Distribution | |
uses: wzieba/Firebase-Distribution-Github-Action@v1 | |
with: | |
appId: ${{secrets.FIREBASE_COMPOSE_SAMPLE_APP_ID}} | |
token: ${{secrets.FIREBASE_TOKEN}} | |
groups: stream-testers | |
file: stream-chat-android-compose-sample/build/outputs/apk/release/stream-chat-android-compose-sample-release.apk |