Add hexdoc export to ci, update hexdoc workflow commands #19
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: Run CI | |
on: | |
push: | |
branches: main | |
tags: v* | |
permissions: | |
contents: read | |
concurrency: | |
group: ci | |
cancel-in-progress: false | |
env: | |
PYPI_PACKAGE: hexdoc | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Install dependencies | |
run: pip install . build | |
- name: Export hexdoc resources | |
run: hexdoc export | |
- name: Build package | |
run: python -m build | |
- name: Upload package artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: python-build | |
path: dist | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Run pre-commit hooks | |
env: | |
SKIP: pyright | |
uses: pre-commit/action@v3.0.0 | |
- name: Install Nox | |
run: pip install nox | |
- name: Run Nox | |
run: nox | |
publish-pypi: | |
runs-on: ubuntu-latest | |
needs: [build, test] | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') | |
environment: | |
name: pypi | |
url: https://pypi.org/p/${{ env.PYPI_PACKAGE }} | |
permissions: | |
id-token: write | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Update release tags | |
uses: rickstaa/action-update-semver@v1 | |
- name: Download package artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: python-build | |
path: dist | |
- name: Publish to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 |