This repository has been archived by the owner on Apr 8, 2024. It is now read-only.
ベネッセのサービスで完全統合 #146
Workflow file for this run
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 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- 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 --no-daemon | |
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: DchaStateChanger(v${{ env.version }}@${{ env.commit }}) | |
path: app/build/outputs/apk/release/app-release.apk |