Skip to content

Update pip install instructions for Python until we publish. #181

Update pip install instructions for Python until we publish.

Update pip install instructions for Python until we publish. #181

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
permissions:
contents: read
id-token: write
pages: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'npm'
cache-dependency-path: "site/package-lock.json"
- name: Build site
run: |
cd site
echo "Building the site"
npm ci
npm run build
- name : Upload artifact
uses: actions/upload-pages-artifact@v2
with:
name: github-pages
path: site/_site
- name: Deploy to GitHub Pages from artifacts
uses: actions/deploy-pages@v2