chore(docs): add file
type to the fern definition types doc (#5779)
#689
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: publish-docs | |
on: | |
workflow_dispatch: # Added manual trigger | |
push: | |
paths: | |
- "fern/**" | |
- ".github/workflows/publish-docs.yml" | |
branches: | |
- main | |
jobs: | |
run: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Install | |
uses: ./.github/actions/install | |
- name: Publish Docs | |
env: | |
FERN_TOKEN: ${{ secrets.FERN_TOKEN }} | |
AUTH0_DOMAIN: ${{ secrets.AUTH0_DOMAIN }} | |
AUTH0_CLIENT_ID: ${{ secrets.AUTH0_CLIENT_ID }} | |
POSTHOG_API_KEY: ${{ secrets.POSTHOG_PROJECT_API_KEY }} | |
run: | | |
pnpm --filter @fern-api/cli dist:cli:prod | |
cli_path="$(pwd)/packages/cli/cli/dist/prod/cli.cjs" | |
node $cli_path generate --docs --log-level debug --instance fern.docs.buildwithfern.com/learn | |
# - name: Install fern-dev CLI | |
# run: | | |
# npm config set //registry.npmjs.org/:_authToken ${{ secrets.YARN_NPM_AUTH_TOKEN }} | |
# npm install -g @fern-api/fern-api-dev --prefix=$HOME/.local | |
# - name: Publish Docs to dev | |
# env: | |
# FERN_TOKEN: ${{ secrets.FERN_ORG_TOKEN_DEV }} | |
# run: fern-dev generate --docs --log-level debug --instance fern.docs.dev.buildwithfern.com/learn |