⬆️ Upgrade kotlin from 1.6.21 to 1.8.0 #95
Workflow file for this run
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: Rebuild CLI documentation | |
on: | |
push: | |
paths: | |
- modules/cli/src/main/kotlin/datamaintain/cli/documentation/* | |
- modules/cli/src/main/kotlin/datamaintain/cli/app/* | |
- modules/cli/src/main/kotlin/datamaintain/cli/app/update/db/* | |
jobs: | |
rebuild-cli-documentation: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Define Gradle cache | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | |
restore-keys: | | |
${{ runner.os }}-gradle- | |
- name: Rebuild CLI documentation | |
run: ./gradlew :modules:cli:rebuildCliDocumentation --build-cache | |
- name: Commit updated CLI documentation | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: ":memo: Update CLI configuration documentation" | |
file_pattern: docs/cli-configuration.md |