Skip to content

Update getting-started.md (#84) #289

Update getting-started.md (#84)

Update getting-started.md (#84) #289

Workflow file for this run

name: Deploy Docs
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup
uses: ./.github/actions/setup
- name: Build docs
run: yarn docs build
- name: Upload build artifact
uses: actions/upload-pages-artifact@v3
with:
path: docs/build
deploy:
runs-on: ubuntu-latest
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4