Document iota embedding and the Shepherd Directrix mishap, plus minor… #497
This file contains hidden or 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: Build the web book | |
| on: | |
| push: | |
| branches: main | |
| workflow_dispatch: | |
| inputs: | |
| release: | |
| description: Release this version | |
| type: boolean | |
| default: false | |
| publish: | |
| description: Package index to publish to | |
| type: choice | |
| options: | |
| - none | |
| - PyPI | |
| env: | |
| PYPI_PACKAGE: hexdoc-hexcasting | |
| permissions: | |
| contents: read | |
| jobs: | |
| hexdoc: | |
| uses: hexdoc-dev/actions/.github/workflows/hexdoc.yml@v1 | |
| permissions: | |
| contents: write | |
| pages: read | |
| secrets: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| python-version: "3.11" | |
| release: |- | |
| ${{ | |
| github.event_name != 'push' && inputs.release | |
| || github.event_name == 'push' && startsWith(github.event.head_commit.message, '[Release]') | |
| }} | |
| publish-pypi: | |
| runs-on: ubuntu-latest | |
| needs: hexdoc | |
| if: |- | |
| needs.hexdoc.outputs.release == 'true' && | |
| (github.event_name == 'push' || inputs.publish == 'PyPI') | |
| environment: | |
| name: pypi | |
| url: https://pypi.org/p/${{ env.PYPI_PACKAGE }} | |
| permissions: | |
| id-token: write | |
| steps: | |
| - name: Download package artifact | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: hexdoc-build | |
| path: dist | |
| - name: Publish to PyPI | |
| uses: pypa/gh-action-pypi-publish@release/v1 |