Skip to content

sneak in a push trigger to test docs #1

sneak in a push trigger to test docs

sneak in a push trigger to test docs #1

Workflow file for this run

name: build and deploy docs
on:
workflow_call:
workflow_dispatch:
push:
jobs:
build:
uses: ./.github/workflows/build_docs.yml
deploy:
needs: build
runs-on: ubuntu-latest
steps:
- name: Download docs artifact
uses: actions/download-artifact@v4
with:
name: docs
path: docs
- name: Deploy to ghpages branch
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/_build/html
- name: Deploy to fair-chem.github.io
uses: peaceiris/actions-gh-pages@v4
with:
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
external_repository: FAIR-Chem/fair-chem.github.io
publish_branch: gh-pages
publish_dir: docs/_build/html