Fix bug 190: Brightness & Volume gestures only work when controls are… #705
Workflow file for this run
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: Android CI | |
on: | |
push: | |
branches: [ "master" ] | |
paths-ignore: | |
- '**.md' | |
- '**.txt' | |
- '.github/**' | |
- '.idea/**' | |
- 'fastlane/**' | |
- '!.github/workflows/**' | |
pull_request: | |
branches: [ "master" ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: gradle | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build with Gradle | |
run: ./gradlew :androidApp:assembleSnapshotChannelRichCodecRelease | |
- name: Upload | |
uses: actions/upload-artifact@v3 | |
with: | |
path: "androidApp/build/outputs/apk/snapshotChannelRichCodec/release/*.apk" | |
- name: Upload To Telegram | |
if: github.event_name != 'pull_request' | |
uses: xireiki/[email protected] | |
with: | |
bot_token: ${{ secrets.BOT_TOKEN }} | |
chat_id: ${{ secrets.CHAT_ID }} | |
# large_file: true | |
method: sendFile | |
path: "androidApp/build/outputs/apk/snapshotChannelRichCodec/release/*.apk" | |
# parse_mode: Markdown |