This repository has been archived by the owner on Jun 2, 2024. It is now read-only.
同期アダプタを削除 #90
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: | |
inputs: | |
release: | |
description: 'Release' | |
type: boolean | |
required: true | |
default: false | |
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: '8' | |
- 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 aR --no-daemon | |
cp -f app/build/outputs/apk/release/app-release.apk docs/open/TouchSetupLogin.apk | |
{ | |
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: NovaDirectInstaller(${{ env.version }}@${{ env.commit }}) | |
path: app/build/outputs/apk/release/app-release.apk | |
- name: Import GPG key | |
uses: crazy-max/ghaction-import-gpg@v6 | |
if: github.event.inputs.release == 'true' | |
with: | |
gpg_private_key: ${{ secrets.GPG_KEY }} | |
passphrase: ${{ secrets.GPG_PASS }} | |
fingerprint: ${{ vars.GPG_FINGERPRINT }} | |
trust_level: 5 | |
git_user_signingkey: true | |
git_commit_gpgsign: true | |
- name: Push APK | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
if: github.event.inputs.release == 'true' | |
with: | |
commit_message: ${{ env.version }} | |
commit_user_name: ${{ vars.COMMITTER_NAME }} | |
commit_user_email: ${{ vars.COMMITTER_EMAIL }} | |
#commit_options: '-S' | |
file_pattern: docs/open/TouchSetupLogin.apk | |
tagging_message: ${{ env.version }} | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
if: github.event.inputs.release == 'true' | |
with: | |
tag_name: ${{ env.version }} | |
draft: true | |
prerelease: false | |
files: app/build/outputs/apk/release/app-release.apk |