We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99791ff commit 4024cfeCopy full SHA for 4024cfe
.github/workflows/docs.yaml
@@ -11,6 +11,11 @@ on:
11
tags:
12
- v-**
13
workflow_dispatch:
14
+ inputs:
15
+ ref:
16
+ description: (Optional) Which tag to deploy
17
+ type: string
18
+ required: false
19
20
permissions:
21
contents: read
@@ -24,15 +29,15 @@ jobs:
24
29
steps:
25
30
- name: Checkout
26
31
uses: actions/checkout@v4
32
+ with:
33
+ ref: ${{ inputs.ref }}
27
34
- name: Install JDK
28
35
uses: actions/setup-java@v4
36
with:
37
java-version: "17"
38
distribution: "temurin"
39
cache: "gradle"
40
check-latest: true
- - name: Install common deps
- run: sudo scripts/build-common.sh
41
- name: Generate docs
42
run: ./gradlew dokkaGenerate
43
- name: Setup Pages
scripts/build-common.sh
scripts/utils.sh
0 commit comments