Skip to content

Commit 36d3a90

Browse files
committed
chore(ci): add workflow to trigger rebuild latest docs
1 parent a590284 commit 36d3a90

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

Diff for: .github/workflows/rebuild-latest-docs.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Rebuild latest docs
2+
3+
#
4+
# === Documentation hotfix ===
5+
#
6+
# 1. Trigger "Rebuild latest docs" workflow manually: https://docs.github.com/en/actions/managing-workflow-runs/manually-running-a-workflow
7+
# 2. Use the latest version released under Releases e.g. 1.6.0
8+
9+
on:
10+
workflow_dispatch:
11+
inputs:
12+
latest_published_version:
13+
description: "Latest npm published version to rebuild latest docs for, e.g. 1.6.0"
14+
required: true
15+
16+
jobs:
17+
release-docs:
18+
permissions:
19+
contents: write
20+
pages: write
21+
uses: ./.github/workflows/reusable-publish-docs.yml
22+
with:
23+
version: ${{ inputs.latest_published_version }}
24+
alias: latest

0 commit comments

Comments
 (0)