This repository has been archived by the owner on Jun 2, 2024. It is now read-only.
パスを修正 #98
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' | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.gradle/caches/ | |
~/.gradle/wrapper/ | |
key: ${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }} | |
- name: Build with Gradle | |
run: | | |
./gradlew :CT3:asD | |
./gradlew :CTX:asD | |
cp -f CT3/build/outputs/apk/debug/CT3-debug.apk app/src/main/assets/CT3.apk | |
cp -f CTX/build/outputs/apk/debug/CTX-debug.apk app/src/main/assets/CTX.apk | |
./gradlew :app:asD | |
{ | |
echo "repo=$(echo ${GITHUB_REPOSITORY#$GITHUB_REPOSITORY_OWNER/})" | |
echo "version=v$(grep versionName app/build.gradle | awk '{print $2}' | tr -d \")" | |
echo "commit=$(echo ${{ github.sha }} | cut -c-7)" | |
} >> $GITHUB_ENV | |
- name: Upload APK | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ env.repo }}(${{ env.version }}@${{ env.commit }}) | |
path: app/build/outputs/apk/debug/app-debug.apk |