fix #98
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: Build release | |
on: | |
push: | |
branches: [android] | |
pull_request: | |
branches: [android] | |
paths: | |
- '.github/**' | |
- 'app/**' | |
- 'gradle/**' | |
- '*.properties' | |
- '*.gradle' | |
- 'gradlew' | |
- 'gradlew.bat' | |
jobs: | |
generate-release-build: | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, '[ci skip]')" | |
env: | |
GRADLE_USER_HOME: ~/.gradle | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up JDK | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'adopt' | |
java-version: '17' | |
- name: Cache Gradle dependencies | |
uses: actions/cache@v2 | |
with: | |
path: | | |
${{ env.GRADLE_USER_HOME }}/caches | |
${{ env.GRADLE_USER_HOME }}/wrapper | |
key: gradle-${{ runner.os }}-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | |
- name: Decrypt secrets | |
run: release/signing-setup.sh "$ENCRYPT_KEY" | |
env: | |
ENCRYPT_KEY: ${{ secrets.ENCRYPT_KEY }} | |
- name: Download gradle dependencies | |
run: ./gradlew dependencies | |
- name: Build Release app | |
run: ./gradlew :app:assembleRelease | |
- name: Send APK to Telegram | |
if: github.event_name == 'push' # Only execute for push events, not pull requests | |
run: release/deploy-telegram.sh | |
env: | |
TG_TO: ${{ secrets.TELEGRAM_TO }} | |
TG_TOKEN: ${{ secrets.TELEGRAM_TOKEN }} | |
TG_FILE: ./app/build/outputs/apk/release/app-release.apk | |
- name: Send changelog to Telegram | |
if: github.event_name == 'push' # Only execute for push events, not pull requests | |
run: release/changelog-telegram.sh | |
env: | |
TG_TO: ${{ secrets.TELEGRAM_TO }} | |
TG_TOKEN: ${{ secrets.TELEGRAM_TOKEN }} | |
- name: Clean secrets | |
if: always() | |
run: release/signing-cleanup.sh |