This repository has been archived by the owner on Dec 28, 2024. It is now read-only.
Feat : Introducing Nazomi Second Playground #12
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: [ "**" ] | |
paths-ignore: | |
- '**/*.md' | |
pull_request: | |
branches: [ "**" ] | |
paths-ignore: | |
- '**/*.md' | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build nozomi | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '21' | |
distribution: 'oracle' | |
cache: gradle | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Validate Gradle wrapper | |
uses: gradle/actions/wrapper-validation@v4 | |
- name: Build nozomi Debug | |
run: ./gradlew assembleDebug | |
- name: Upload release app | |
uses: actions/upload-artifact@v4 | |
with: | |
name: nozomi-debug | |
path: app/build/outputs/apk/debug/ |