Bring CODE-OF-CONDUCT from being under review to publication again (#… #265
This file contains hidden or 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: publish-site | |
on: | |
# Trigger the workflow on push to main branch | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
build: | |
uses: ProjectPythia/cookbook-actions/.github/workflows/build-book.yaml@main | |
with: | |
base_url: '' | |
path_to_notebooks: 'portal' | |
secrets: | |
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }} | |
PRIVATE_KEY_ID: ${{ secrets.PRIVATE_KEY_ID }} | |
deploy: | |
needs: build | |
uses: ProjectPythia/cookbook-actions/.github/workflows/deploy-book.yaml@main | |
with: | |
publish_dir: 'portal/_build/html' |