Skip to content

[Nightly] docs: add CI trigger note for developers (missed last build) #4

[Nightly] docs: add CI trigger note for developers (missed last build)

[Nightly] docs: add CI trigger note for developers (missed last build) #4

Workflow file for this run

name: Nightly Build (dev)
on:
push:
branches: [ "dev" ]
jobs:
build:
# Only trigger when commit message starts with "[Nightly]"
if: startsWith(github.event.head_commit.message, '[Nightly]')
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 assembleDebug
- name: Upload APK
uses: actions/upload-artifact@v4
with:
name: app-debug-nightly
path: app/build/outputs/apk/debug/app-debug.apk