mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-13 21:01:21 +08:00
55 lines
1.3 KiB
YAML
55 lines
1.3 KiB
YAML
name: Publish Docs
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
run:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
NEXT_PUBLIC_STACK_URL: http://localhost:8101
|
|
NEXT_PUBLIC_STACK_PROJECT_ID: internal
|
|
NEXT_PUBLIC_STACK_PUBLISHABLE_CLIENT_KEY: internal-project-publishable-client-key
|
|
STACK_SECRET_SERVER_KEY: internal-project-secret-server-key
|
|
SERVER_SECRET: 23-wuNpik0gIW4mruTz25rbIvhuuvZFrLOLtL7J4tyo
|
|
|
|
EMAIL_HOST: 0.0.0.0
|
|
EMAIL_PORT: 2500
|
|
EMAIL_USERNAME: test
|
|
EMAIL_PASSWORD: none
|
|
EMAIL_SENDER: noreply@test.com
|
|
|
|
DATABASE_CONNECTION_STRING: postgres://postgres:password@localhost:5432/stackframe
|
|
DIRECT_DATABASE_CONNECTION_STRING: postgres://postgres:password@localhost:5432/stackframe
|
|
|
|
permissions: write-all
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Setup Node.js v20
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 20
|
|
|
|
- name: Setup pnpm
|
|
uses: pnpm/action-setup@v3
|
|
with:
|
|
version: 9.1.2
|
|
|
|
- name: Install dependencies
|
|
run: pnpm install --frozen-lockfile
|
|
|
|
- name: Build
|
|
run: pnpm build
|
|
|
|
- name: Check API is valid
|
|
run: pnpm run fern check
|
|
|
|
- name: Publish Docs
|
|
env:
|
|
FERN_TOKEN: ${{ secrets.FERN_TOKEN }}
|
|
run: pnpm run fern generate --docs --log-level debug
|