Skip to content

Token Counter Transform (#46) #52

Token Counter Transform (#46)

Token Counter Transform (#46) #52

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: ["main"]
# Review gh actions docs if you want to further define triggers, paths, etc
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
name: Build Docusaurus
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 18
- name: Install dependencies
run: |
cd website
npm ci
- name: Build website
run: |
cd website
npm run build
- name: Upload Build Artifact
uses: actions/upload-pages-artifact@v3
with:
path: website/build
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4