Skip to content

Browser library v17.3.0 #142

Browser library v17.3.0

Browser library v17.3.0 #142

Workflow file for this run

name: Release tasks
on:
release:
types: [ published ]
jobs:
gh-pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 16.x
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Dependencies for building docs # TODO: thin a bit
run: |
npm ci
python -m pip install --upgrade pip
pip install -r Browser/dev-requirements.txt
inv build
- name: Build docs
run: |
inv docs
inv gh-pages-index
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4.4.3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: docs # The folder the action should deploy.