Fix bug where choice() didn't consume params on successful matching #49
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: Create release | |
on: | |
push: | |
tags: ['v*'] | |
jobs: | |
test: | |
uses: ./.github/workflows/test.yaml | |
pypi-publish: | |
name: Publish docopt.sh to PyPI | |
needs: [test] | |
runs-on: ubuntu-latest | |
environment: release | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.ref }} | |
- uses: orbit-online/git-release@v1 | |
id: tag | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- name: Install dependencies | |
run: .devcontainer/post.sh | |
- name: Set version | |
run: poetry version ${{ steps.tag.outputs.tag }} | |
- name: Build | |
run: poetry build | |
- name: Publish package distributions to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1.8 | |
docopt-lib-release: | |
needs: [test] | |
name: Create docopt-lib.sh GitHub Release | |
runs-on: ubuntu-latest | |
environment: release | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.ref }} | |
- uses: orbit-online/git-release@v1 | |
id: tag | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- name: Create release assets | |
id: assets | |
run: | | |
.devcontainer/post.sh | |
poetry version ${{ steps.tag.outputs.tag }} | |
poetry install | |
version=$(.venv/bin/docopt.sh --version) | |
printf "version=%s\n" "$version" >> $GITHUB_OUTPUT | |
mkdir dist | |
cp README.adoc LICENSE dist/ | |
.venv/bin/docopt.sh generate-library >dist/docopt-lib.sh | |
printf '{ | |
"name": "docopt-lib.sh", | |
"version": "%s" | |
}' "$version" >dist/upkg.json | |
- uses: orbit-online/upkg-release@v1 | |
with: | |
working-directory: dist | |
version: ${{ steps.assets.outputs.version }} | |
paths: docopt-lib.sh README.adoc LICENSE |