mirror of
https://github.com/imartinez/privateGPT.git
synced 2026-07-17 11:29:56 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
55 lines
1.5 KiB
YAML
55 lines
1.5 KiB
YAML
name: deploy preview docs
|
|
|
|
on:
|
|
pull_request_target:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- "fern/**"
|
|
|
|
jobs:
|
|
preview-docs:
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v7
|
|
with:
|
|
ref: refs/pull/${{ github.event.pull_request.number }}/merge
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v6
|
|
with:
|
|
node-version: "24"
|
|
|
|
- name: Install Fern
|
|
run: npm install -g fern-api
|
|
|
|
- name: Generate Documentation Preview with Fern
|
|
id: generate_docs
|
|
env:
|
|
FERN_TOKEN: ${{ secrets.FERN_TOKEN }}
|
|
run: |
|
|
output=$(fern generate --docs --preview --log-level debug)
|
|
echo "$output"
|
|
# Extract the URL
|
|
preview_url=$(echo "$output" | grep -oP '(?<=Published docs to )https://[^\s]*')
|
|
# Set the output for the step
|
|
echo "preview_url=$preview_url" >> "$GITHUB_OUTPUT"
|
|
- name: Comment PR with URL using github-actions bot
|
|
uses: actions/github-script@v9
|
|
if: ${{ steps.generate_docs.outputs.preview_url }}
|
|
with:
|
|
script: |
|
|
const preview_url = '${{ steps.generate_docs.outputs.preview_url }}';
|
|
github.rest.issues.createComment({
|
|
issue_number: context.issue.number,
|
|
owner: context.repo.owner,
|
|
repo: context.repo.repo,
|
|
body: `Published docs preview URL: ${preview_url}`
|
|
})
|