Skip to content

Commit

Permalink
Update release workflow to include an RTD docs verification step.
Browse files Browse the repository at this point in the history
  • Loading branch information
freakboy3742 committed Nov 3, 2023
1 parent fcd0f3c commit b9669f7
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,17 @@ jobs:
ci:
uses: ./.github/workflows/ci.yml

docs:
name: Verify Docs Build
uses: beeware/.github/.github/workflows/docs-build-verify.yml@main
secrets: inherit
with:
project-name: "toga"
project-version: ${{ github.ref_name }}

release:
name: Create GitHub release
needs: ci
needs: [ ci, docs ]
runs-on: ubuntu-latest
permissions:
contents: write
Expand Down Expand Up @@ -68,4 +76,4 @@ jobs:
- name: Publish to TestPyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository_url: https://test.pypi.org/legacy/
repository-url: https://test.pypi.org/legacy/

0 comments on commit b9669f7

Please sign in to comment.