mirror of
https://github.com/vercel/workflow.git
synced 2026-09-14 19:59:43 +08:00
cab9a5334f
Per-deployment SDK tarballs are now built by the tarballs/ app, not by docs/. Remove the outdated reference to docs/scripts/pack.ts (which no longer exists) and point readers at tarballs/README.md.
35 lines
844 B
YAML
35 lines
844 B
YAML
# On stable, docs/ is a minimal placeholder that only builds a
|
|
# blank Next.js app. The real docs site is deployed from main, and
|
|
# per-deployment SDK tarballs are built by the separate tarballs/
|
|
# app. This workflow is kept as a no-op on stable so that any
|
|
# branch protection rules referencing these job names still pass.
|
|
name: Docs Checks
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
tags:
|
|
- "!*"
|
|
pull_request:
|
|
|
|
concurrency:
|
|
# Unique group for this workflow and branch
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
|
|
|
|
jobs:
|
|
docs-typecheck:
|
|
name: Docs Code Samples
|
|
if: false
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: true
|
|
|
|
docs-preview-smoke:
|
|
name: Docs Preview Smoke Checks
|
|
if: false
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: true
|