Skip to content

Display forms embedded inline within guides; remove "forms" link from… #784

Display forms embedded inline within guides; remove "forms" link from…

Display forms embedded inline within guides; remove "forms" link from… #784

Workflow file for this run

name: Sanity
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: read
concurrency:
group: sanity-deploy-${{ github.ref }}
cancel-in-progress: false
jobs:
deploy-sanity:
name: Deploy Sanity Studio
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
with:
persist-credentials: false
- name: Setup pnpm
uses: pnpm/action-setup@v6.0.8
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: "24.x"
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Deploy Sanity Studio
run: pnpm sanity deploy
env:
SANITY_AUTH_TOKEN: ${{ secrets.SANITY_AUTH_TOKEN }}