Update dependency com.diffplug.spotless:spotless-plugin-gradle to v7.0.2 #686
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: PR build check | |
on: | |
# push: | |
# branches: | |
# - develop | |
# paths-ignore: | |
# - '**.md' | |
pull_request: | |
paths: | |
- '**' | |
- '!i18n/src/commonMain/moko-resources/**/strings.xml' | |
- '!i18n/src/commonMain/moko-resources/**/plurals.xml' | |
- 'i18n/src/commonMain/moko-resources/base/strings.xml' | |
- 'i18n/src/commonMain/moko-resources/base/plurals.xml' | |
- 'i18n-sy/src/commonMain/moko-resources/base/strings.xml' | |
- 'i18n-sy/src/commonMain/moko-resources/base/plurals.xml' | |
- 'i18n-kmk/src/commonMain/moko-resources/base/strings.xml' | |
- 'i18n-kmk/src/commonMain/moko-resources/base/plurals.xml' | |
# Dispatch or Manual triggers | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
build: | |
name: Build app | |
runs-on: ubuntu-latest | |
if: github.repository == github.event.pull_request.head.repo.full_name | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
fetch-depth: 0 | |
- name: Dependency Review | |
uses: actions/dependency-review-action@3b139cfc5fae8b618d3eae3675e383bb1769c019 # v4.5.0 | |
- name: Setup Android SDK | |
run: | | |
${ANDROID_SDK_ROOT}/cmdline-tools/latest/bin/sdkmanager "build-tools;29.0.3" | |
- name: Set up JDK | |
uses: actions/setup-java@7a6d8a8234af8eb26422e24e3006232cccaa061b # v4.6.0 | |
with: | |
java-version: 17 | |
distribution: temurin | |
- name: Write google-services.json | |
uses: DamianReeves/write-file-action@6929a9a6d1807689191dcc8bbe62b54d70a32b42 # v1.3 | |
with: | |
path: app/google-services.json | |
contents: ${{ secrets.GOOGLE_SERVICES_JSON }} | |
write-mode: overwrite | |
- name: Write client_secrets.json | |
uses: DamianReeves/write-file-action@6929a9a6d1807689191dcc8bbe62b54d70a32b42 # v1.3 | |
with: | |
path: app/src/main/assets/client_secrets.json | |
contents: ${{ secrets.GOOGLE_CLIENT_SECRETS_JSON }} | |
write-mode: overwrite | |
- name: Set up gradle | |
uses: gradle/actions/setup-gradle@0bdd871935719febd78681f197cd39af5b6e16a6 # v4 | |
- name: Check code format | |
run: ./gradlew spotlessCheck | |
- name: Build app | |
run: ./gradlew assembleStandardRelease | |
- name: Run unit tests | |
run: ./gradlew testReleaseUnitTest testStandardReleaseUnitTest | |
- name: Sign APK | |
uses: r0adkll/sign-android-release@349ebdef58775b1e0d8099458af0816dc79b6407 # v1 | |
with: | |
releaseDirectory: app/build/outputs/apk/standard/release | |
signingKeyBase64: ${{ secrets.SIGNING_KEY }} | |
alias: ${{ secrets.ALIAS }} | |
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }} | |
keyPassword: ${{ secrets.KEY_PASSWORD }} | |
- name: Rename apk | |
id: current_commit | |
run: | | |
set -x | |
echo "The git ref is: ${{ github.ref }}" | |
version_tag=p$(echo ${{ github.ref }} | cut -d '/' -f 3) | |
commit_count=$(git rev-list --count HEAD) | |
echo "VERSION_TAG=$version_tag" | |
echo "VERSION_TAG=$version_tag" >> $GITHUB_OUTPUT | |
echo "COMMIT_COUNT=$commit_count" | |
echo "COMMIT_COUNT=$commit_count" >> $GITHUB_OUTPUT | |
mv app/build/outputs/apk/standard/release/app-standard-universal-release-unsigned-signed.apk Komikku-$version_tag-r$commit_count.apk | |
- name: Upload APK | |
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 | |
with: | |
name: Komikku-${{ steps.current_commit.outputs.VERSION_TAG }}-r${{ steps.current_commit.outputs.COMMIT_COUNT }}.apk | |
path: ./*.apk | |
retention-days: 1 |