mirror of
https://github.com/gofiber/fiber.git
synced 2026-03-26 17:48:16 +00:00
Bumps [actions/setup-node](https://github.com/actions/setup-node) from 6.2.0 to 6.3.0.
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](6044e13b5d...53b83947a5)
---
updated-dependencies:
- dependency-name: actions/setup-node
dependency-version: 6.3.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
34 lines
783 B
YAML
34 lines
783 B
YAML
name: "Sync docs"
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- "docs/**"
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
sync-docs:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
with:
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
fetch-depth: 2
|
|
|
|
- name: Setup Node.js environment
|
|
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
|
|
with:
|
|
node-version: "22.x"
|
|
|
|
- name: Sync docs
|
|
run: ./.github/scripts/sync_docs.sh
|
|
env:
|
|
EVENT: ${{ github.event_name }}
|
|
TAG_NAME: ${{ github.ref_name }}
|
|
TOKEN: ${{ secrets.DOC_SYNC_TOKEN }}
|