diff --git a/.github/workflows/docs-update.yml b/.github/workflows/docs-update.yml index 11a660bb7..415d4bc72 100644 --- a/.github/workflows/docs-update.yml +++ b/.github/workflows/docs-update.yml @@ -37,8 +37,10 @@ jobs: with: python-version: ${{ needs.set-versions.outputs.max }} - id: versions + env: + REF: ${{ github.event.ref }} run: | - mike_version=$(python ./scripts/mike_version_parse.py ${{ env.GITHUB_REF }}) + mike_version=$(python ./scripts/mike_version_parse.py "$REF") echo "mver=$mike_version" >> $GITHUB_OUTPUT deploy-docs: runs-on: ubuntu-latest diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index fdd4c9759..049d30103 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -43,7 +43,7 @@ Upon approval from reviewer(s), the working copy is squashed and merged into the Upon a cadence established by the maintainers, the develop branch is merged into the main branch and a new release is uniquely numbered and pushed to [pypi](https://pypi.org/project/compliance-trestle/). `trestle` employs `semantic release` to automatically control release numbering. -Code deliveries should be tagged with prefix `fix:` for changes that are bug fixes or `feat:` for changes that are new features. See [allowed_tags](https://python-semantic-release.readthedocs.io/en/latest/commit-parsing.html#:~:text=The%20default%20configuration%20options%20for%20semantic_release.commit_parser.AngularCommitParser%20are%3A) for a list of supported tags. +Code deliveries should be tagged with prefix `fix:` for changes that are bug fixes or `feat:` for changes that are new features. See [allowed_tags](https://python-semantic-release.readthedocs.io/en/latest/commit_parsing.html#commit-parser-builtin-angular) for a list of supported tags. ### Trestle merging and release workflow