pyo3/.github/workflows/gh-pages.yml

55 lines
1.4 KiB
YAML
Raw Normal View History

2022-03-25 09:46:57 +00:00
name: gh-pages
on:
push:
branches:
2021-03-16 22:14:57 +00:00
- main
2021-05-05 03:27:12 +00:00
pull_request:
release:
2020-09-16 21:25:43 +00:00
types: [published]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
2020-09-01 19:59:28 +00:00
env:
CARGO_TERM_COLOR: always
jobs:
2022-03-25 09:46:57 +00:00
guide-build:
runs-on: ubuntu-latest
2020-09-16 19:43:44 +00:00
outputs:
tag_name: ${{ steps.prepare_tag.outputs.tag_name }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
- name: Setup mdBook
uses: taiki-e/install-action@v2
with:
tool: mdbook,lychee
- name: Prepare tag
id: prepare_tag
run: |
TAG_NAME="${GITHUB_REF##*/}"
echo "::set-output name=tag_name::${TAG_NAME}"
# This builds the book in target/guide/.
- name: Build the guide
run: |
python -m pip install --upgrade pip && pip install nox
nox -s check-guide
env:
PYO3_VERSION_TAG: ${{ steps.prepare_tag.outputs.tag_name }}
- name: Deploy docs and the guide
2022-08-27 20:15:12 +00:00
if: ${{ github.event_name == 'release' }}
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./target/guide/
destination_dir: ${{ steps.prepare_tag.outputs.tag_name }}
2021-07-20 07:53:43 +00:00
full_commit_message: "Upload documentation for ${{ steps.prepare_tag.outputs.tag_name }}"