This repository has been archived by the owner on Dec 28, 2024. It is now read-only.
added Button and TextField #10
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 Sakura | |
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 Sakura Debug | |
run: ./gradlew assembleDebug | |
- name: Upload release app | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Sakura-debug | |
path: app/build/outputs/apk/debug/ |