This repository has been archived by the owner on Aug 7, 2024. It is now read-only.
fix: non audio files appearing in recordings (fix #237) #360
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: CI | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths-ignore: | |
- "README*.md" | |
- "fastlane/**" | |
- "assets/**" | |
- ".github/**/*.md" | |
push: | |
paths-ignore: | |
- "README*.md" | |
- "fastlane/**" | |
- "assets/**" | |
- ".github/**/*.md" | |
jobs: | |
debug-builds: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: gradle/wrapper-validation-action@v1 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 11 | |
distribution: "temurin" | |
cache: "gradle" | |
- name: Compile | |
run: | | |
./gradlew assembleDebug | |
- name: Sign Apk | |
continue-on-error: true | |
id: sign_apk | |
uses: ilharp/sign-android-release@v1 | |
with: | |
releaseDir: app/build/outputs/apk/debug | |
signingKey: ${{ secrets.ANDROID_SIGNING_KEY }} | |
keyAlias: ${{ secrets.ANDROID_KEY_ALIAS }} | |
keyStorePassword: ${{ secrets.ANDROID_KEYSTORE_PASSWORD }} | |
keyPassword: ${{ secrets.ANDROID_KEY_PASSWORD }} | |
- name: Remove file that aren't signed | |
continue-on-error: true | |
run: | | |
ls | grep 'signed\.apk$' && find . -type f -name '*.apk' ! -name '*-signed.apk' -delete | |
- name: Upload APK | |
uses: actions/upload-artifact@v3 | |
with: | |
name: app | |
path: app/build/outputs/apk/debug/*.apk |