We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a590284 commit 36d3a90Copy full SHA for 36d3a90
.github/workflows/rebuild-latest-docs.yml
@@ -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