Skip to content

chore(deps): update crate-ci/typos digest to 0f0ccba #531

chore(deps): update crate-ci/typos digest to 0f0ccba

chore(deps): update crate-ci/typos digest to 0f0ccba #531

Workflow file for this run

name: Deploy to GitHub Pages
on:
pull_request:
branches:
- main
push:
branches:
- main
merge_group:
workflow_dispatch:
jobs:
build:
name: Build Docusaurus
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
fetch-depth: 0
- uses: oven-sh/setup-bun@735343b667d3e6f658f44d0eca948eb6282f2b76 # v2
- name: Install dependencies
run: bun install --frozen-lockfile --production
- name: Build website
run: bun run build
- name: Upload Build Artifact
uses: actions/upload-pages-artifact@56afc609e74202658d3ffba0e8f6dda462b719fa # v3
with:
path: build
deploy:
name: Deploy to GitHub Pages
if: github.ref == 'refs/heads/main'
needs: build
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
# Deploy to the github-pages environment
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4