警告を詳細化 #123
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: | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
id-token: write | |
attestations: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 21 | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v4 | |
- name: Set environments | |
run: | | |
{ | |
echo "version=v$(grep versionName app/build.gradle | awk -F\" '{print $2}')" | |
echo "commit=$(echo ${{ github.sha }} | cut -c-7)" | |
echo "repo=$(echo ${GITHUB_REPOSITORY#$GITHUB_REPOSITORY_OWNER/})" | |
} >> $GITHUB_ENV | |
- name: Build | |
run: | | |
./gradlew --no-daemon --stacktrace --warning-mode=all assembleDebug bundleDebug | |
cp -f app/build/outputs/apk/debug/app-debug.apk ${{ env.repo }}-${{ env.version }}@${{ env.commit }}.apk | |
cp -f app/build/outputs/bundle/debug/app-debug.aab ${{ env.repo }}-${{ env.version }}@${{ env.commit }}.aab | |
- name: Attest | |
uses: actions/attest-build-provenance@v1 | |
with: | |
subject-path: ${{ env.repo }}-${{ env.version }}*.a* | |
- name: Upload | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ env.repo }}(${{ env.version }}@${{ env.commit }}) | |
path: ${{ env.repo }}-${{ env.version }}*.a* |