Fix multi-line arg and option usage #4
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: Publish | |
on: | |
push: | |
tags: ["v*.*.*"] | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: jdx/mise-action@v2 | |
- name: Release Dry Run | |
run: | | |
header='^## [0-9]+\.[0-9]+\.[0-9]+' | |
awk "/${header}/{if(!found){found=1;f=1}else{f=0}} f" CHANGELOG.md | | |
goreleaser --release-notes /dev/stdin | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_REPO_PAT }} | |
docs: | |
name: Deploy Docs | |
needs: release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout main | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.9" | |
- name: Install dependencies | |
run: | | |
apt update && apt install -y git | |
pip3 install mkdocs==1.3.1 | |
- name: Deploy | |
run: mkdocs gh-deploy | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |