mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
feat(release): Automate changelog, asset updates, and tagging (#4407)
This commit is contained in:
parent
f60fbf4b3a
commit
70d7319efe
9 changed files with 309 additions and 45 deletions
9
.github/workflows/reusable-lint.yml
vendored
9
.github/workflows/reusable-lint.yml
vendored
|
|
@ -2,6 +2,11 @@ name: Reusable Lint and Format Check
|
|||
|
||||
on:
|
||||
workflow_call:
|
||||
inputs:
|
||||
ref:
|
||||
description: 'The branch, tag or SHA to checkout'
|
||||
required: false
|
||||
type: string
|
||||
secrets:
|
||||
GRADLE_ENCRYPTION_KEY:
|
||||
required: false
|
||||
|
|
@ -17,6 +22,7 @@ jobs:
|
|||
runs-on: ubuntu-latest # Lint is fast, doesn't need large runner
|
||||
timeout-minutes: 10
|
||||
env:
|
||||
GRADLE_OPTS: "-Dorg.gradle.daemon=false"
|
||||
GRADLE_CACHE_URL: ${{ secrets.GRADLE_CACHE_URL }}
|
||||
GRADLE_CACHE_USERNAME: ${{ secrets.GRADLE_CACHE_USERNAME }}
|
||||
GRADLE_CACHE_PASSWORD: ${{ secrets.GRADLE_CACHE_PASSWORD }}
|
||||
|
|
@ -25,6 +31,7 @@ jobs:
|
|||
uses: actions/checkout@v6
|
||||
with:
|
||||
fetch-depth: 0
|
||||
ref: ${{ inputs.ref || '' }}
|
||||
|
||||
- name: Set up JDK 17
|
||||
uses: actions/setup-java@v5
|
||||
|
|
@ -44,4 +51,4 @@ jobs:
|
|||
add-job-summary: always
|
||||
|
||||
- name: Run Spotless and Detekt
|
||||
run: ./gradlew spotlessCheck detekt --scan
|
||||
run: ./gradlew spotlessCheck detekt -Pci=true --scan
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue