Skip to content

Commit

Permalink
[CI] Publish doc updates after each release (#373)
Browse files Browse the repository at this point in the history
## Problem

We want documentation to automatically stay up to date after every
release

## Solution

Trigger the docs publish workflow after a new artifact is released to
pypi

## Type of Change

- [x] Infrastructure change (CI configs, etc)
  • Loading branch information
jhamon authored Jul 24, 2024
1 parent 5bb1c06 commit d9df375
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,9 @@ jobs:
secrets:
PYPI_USERNAME: __token__
PYPI_PASSWORD: ${{ secrets.PROD_PYPI_PUBLISH_TOKEN }}

docs-publish:
uses: './.github/workflows/build-and-publish-docs.yaml'
secrets: inherit
needs:
- pypi

0 comments on commit d9df375

Please sign in to comment.