chore(deps): bump the production-dependencies group across 34 directories with 13 updates #1116
Workflow file for this run
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: preview-docs | |
on: | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
inputs: | |
prNumber: | |
description: "Pull Request Number" | |
required: true | |
default: "" | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
permissions: write-all | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install | |
uses: ./.github/actions/install | |
- name: Generate preview URL | |
id: generate-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" | |
OUTPUT=$(node $cli_path generate --docs --preview --instance fern.docs.buildwithfern.com/learn 2>&1) || true | |
echo "$OUTPUT" | |
URL=$(echo "$OUTPUT" | grep -oP 'Published docs to \K.*(?= \()') | |
echo "Preview URL: $URL" | |
echo "🌿 Preview your docs: $URL" > preview_url.txt | |
- name: Comment URL in PR | |
uses: thollander/[email protected] | |
with: | |
filePath: preview_url.txt | |
comment_tag: docs-preview-link |