Skip to content

color nine

color nine #344

name: Generate Android Snapshots
on:
push:
branches: [main, history-bug-bash-android-2]
pull_request:
branches: [main]
paths: [android/**]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./android
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: "17"
distribution: "adopt"
- name: Emerge snapshots
run: ./gradlew :app:emergeUploadSnapshotBundleDebug
env:
EMERGE_API_TOKEN: ${{ secrets.EMERGE_API_KEY }}
PR_SHA: ${{ github.event.pull_request.head.sha }}
PR_BASE_SHA: ${{ github.event.pull_request.base.sha }}