Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add build GitHub Action to build and deploy the tutorials website #2

Merged
merged 3 commits into from
Jan 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
75 changes: 75 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
name: Build website

on:
# Build after every push to main
push:
branches:
- main
# Build on every PR
pull_request:

jobs:

# =================
# Build the website
# =================
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repo
uses: actions/checkout@v3

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '18'

- name: Install Myst
run: |
npm install -g mystmd

- name: Build website as static HTML
run: |
myst build --html

# Store the website as a build artifact so we can deploy it later
- name: Upload HTML website as an artifact
# Only if not a pull request
if: success() && github.event_name != 'pull_request'
uses: actions/upload-artifact@v4
with:
name: html-${{ github.sha }}
path: _build/html


# ==================
# Deploy the website
# ==================
deploy:
runs-on: ubuntu-latest
needs: build
if: github.event_name != 'pull_request'

steps:
- name: Checkout repo
uses: actions/checkout@v3

# Fetch the built HTML from the build job
- name: Download HTML artifact
uses: actions/download-artifact@v4
with:
name: html-${{ github.sha }}
path: _build/html

- name: Deploy to gh-pages
if: success() && github.event_name != 'pull_request'
# Don't use tags: https://julienrenaux.fr/2019/12/20/github-actions-security-risk/
uses: peaceiris/actions-gh-pages@v373f7f263a76c20808c831209c920827a82a2847
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: _build/html
publish_branch: gh-pages
enable_jekyll: false
force_orphan: true