Skip to content

docs: improve environment naming (#119) #272

docs: improve environment naming (#119)

docs: improve environment naming (#119) #272

Workflow file for this run

name: Docs
on:
push:
# We only run this GitHub action upon new commits to `master`
branches:
- main
# We only run this GitHub action if there are changes in the `docs/` directory
paths:
- docs/**
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9.1.3
- name: Install
run: pnpm install
- name: Build
run: pnpm run docs:build
- name: Deploy
uses: JamesIves/github-pages-deploy-action@4.1.4
with:
branch: gh-pages
folder: docs/dist/client
# Remove previous build files
clean: true
# Do not remove the `.nojekyll` file: we have manually added an empty `.nojekyll` file at the root of the `gh-pages` branch and we don't want having to re-create it after each build.
clean-exclude: |
.nojekyll