Android-Password-Store/.github/workflows/branch_deploy.yml
Harsh Shandilya bea3cd5457
CI workflow improvements (#642)
* github: Only run debug tasks in PRs

* github: Remove nightly deploys

* github: Setup automatic debug branch deployment

* Tweak Gradle config in CI

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>

Co-authored-by: Aditya Wasan <adityawasan55@gmail.com>
2020-02-25 15:22:05 +05:30

42 lines
1.2 KiB
YAML

on:
push:
branches-ignore:
- master
name: Build debug
jobs:
generate-debug-build:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[ci skip]')"
steps:
- name: Checkout repository
uses: actions/checkout@v1
- name: Decrypt secrets
run: release/signing-setup.sh "$ENCRYPT_KEY"
env:
ENCRYPT_KEY: ${{ secrets.ENCRYPT_KEY }}
- name: Copy CI gradle.properties
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
- uses: actions/cache@v1
with:
path: ~/.gradle/caches
key: gradle-${{ runner.os }}-${{ hashFiles('**/build.gradle') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}-${{ hashFiles('**/dependencies.gradle') }}
- name: Download gradle dependencies
run: ./gradlew dependencies
- name: Build debug app
run: ./gradlew :app:assembleDebug
- name: Clean secrets
run: release/signing-cleanup.sh
- name: Send APK to Telegram
run: release/deploy-telegram.sh
env:
TG_TO: ${{ secrets.TELEGRAM_TO }}
TG_TOKEN: ${{ secrets.TELEGRAM_TOKEN }}
TG_FILE: ./app/build/outputs/apk/debug/app-debug.apk