Deploy #427
This file contains 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: Deploy | |
on: | |
workflow_dispatch: | |
jobs: | |
build-and-deploy: | |
if: github.ref == 'refs/heads/main' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Install 🔧 | |
shell: bash | |
run: | | |
sudo apt-get install -y graphviz | |
pip3 install pipenv | |
pipenv sync | |
- name: Build 🛠 | |
shell: bash | |
run: pipenv run ./scripts/build.sh | |
- name: Deploy Developer Documentation 🚀 | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: build | |
# Prevent the default behavior of force pushing which will remove previews see https://github.com/marketplace/actions/deploy-pr-preview. | |
force: false | |
clean: true | |
clean-exclude: | | |
pr-preview/ | |
pr-preview-academy/ |