This repository has been archived by the owner on Feb 11, 2025. It is now read-only.
クラッシュを回避 #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: Build | |
on: | |
push: | |
paths: | |
- '.github/workflows/build.yml' | |
- 'app/**' | |
- 'gradle/**' | |
- '*.gradle' | |
- 'gradle.properties' | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '8' | |
- name: Cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.gradle/caches/ | |
~/.gradle/wrapper/ | |
key: ${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }} | |
- name: Build with Gradle | |
run: | | |
./gradlew aR | |
echo "version=$(grep versionName app/build.gradle | awk '{print $2}' | tr -d \")" >> $GITHUB_ENV | |
echo "commit=$(echo ${{ github.sha }} | cut -c -7)" >> $GITHUB_ENV | |
- name: Upload APK | |
uses: actions/upload-artifact@v3 | |
with: | |
name: CT3_Digichalizer(v${{ env.version }}@${{ env.commit }}) | |
path: app/build/outputs/apk/release/app-release*.apk |