Set version to 1.4.1-SNAPSHOT (#2849) #28
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: Publish release documentation | |
on: | |
push: | |
branches: ['master'] | |
paths: ['documentation/release-latest/**'] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
if: github.repository == 'pinterest/ktlint' | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
with: | |
fetch-depth: 0 # fetch all commits/branches | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.x | |
- name: Install mkdocs and mike | |
run: pip install mkdocs-material mike | |
- name: Config git | |
run: | | |
git config user.email "[email protected]" | |
git config user.name "Ktlint Release Workflow" | |
- name: Get last released version | |
run: echo "version=$(git describe --abbrev=0 --tags)" >> $GITHUB_ENV | |
- name: Deploy release docs | |
run: | | |
echo "Deploy release docs to version ${{ env.version }}" | |
cd documentation/release-latest | |
# Release docs are versioned so that user can use relevant docs for the ktlint version they use | |
mike deploy --push --update-aliases ${{ env.version }} latest | |
- name: Update default release docs | |
run: | | |
cd documentation/release-latest | |
mike set-default --push latest |