mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-15 18:07:03 +05:30
106 lines
3 KiB
YAML
106 lines
3 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- renovate/**
|
|
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: macos-14
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Set up JDK
|
|
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1
|
|
with:
|
|
distribution: temurin
|
|
java-version: 18
|
|
|
|
- name: Setup Gradle
|
|
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3
|
|
with:
|
|
cache-read-only: ${{ github.ref != 'refs/heads/main' }}
|
|
gradle-home-cache-cleanup: true
|
|
add-job-summary: always
|
|
dependency-graph: generate-and-submit
|
|
|
|
- name: Check changelog format
|
|
uses: mindsers/changelog-reader-action@32aa5b4c155d76c94e4ec883a223c947b2f02656 # v2.2.3
|
|
with:
|
|
path: ./CHANGELOG.md
|
|
validation_level: error
|
|
|
|
- name: Run unit tests
|
|
run: ./gradlew --no-configuration-cache --stacktrace check -PslimTests
|
|
|
|
- name: (Fail-only) Upload test report
|
|
if: failure()
|
|
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1
|
|
with:
|
|
name: Test report
|
|
path: '**/build/reports/tests/**'
|
|
|
|
dependency-review:
|
|
runs-on: macos-14
|
|
if: "github.event_name == 'push' && github.event.ref != 'refs/heads/main'"
|
|
needs:
|
|
- check
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
|
|
|
- name: Dependency Review
|
|
uses: actions/dependency-review-action@9129d7d40b8c12c1ed0f60400d00c92d437adcce # v4
|
|
with:
|
|
base-ref: refs/heads/main
|
|
head-ref: ${{ github.ref }}
|
|
|
|
deploy-release-snapshot:
|
|
runs-on: macos-14
|
|
if: "github.event_name == 'push' && github.event.ref == 'refs/heads/main'"
|
|
needs:
|
|
- check
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
|
|
|
- name: Set up JDK
|
|
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1
|
|
with:
|
|
distribution: temurin
|
|
java-version: 18
|
|
|
|
- name: Setup Gradle
|
|
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3
|
|
with:
|
|
cache-read-only: ${{ github.ref != 'refs/heads/main' }}
|
|
gradle-home-cache-cleanup: true
|
|
add-job-summary: always
|
|
dependency-graph: generate-and-submit
|
|
|
|
- name: Build release APK
|
|
run: |
|
|
./scripts/setup-age.sh
|
|
./scripts/signing-setup.sh "$AGE_SECRET_KEY"
|
|
|
|
./gradlew --no-configuration-cache --stacktrace collectReleaseApks
|
|
|
|
./scripts/signing-cleanup.sh
|
|
./scripts/deploy-snapshot.sh
|
|
env:
|
|
AGE_SECRET_KEY: ${{ secrets.AGE_SECRET_KEY }}
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
|