Skip to content

Commit 9e97684

Browse files
committed
fix(ci): update library name for docs generation
1 parent a0241c0 commit 9e97684

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/release-common.main.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ fun JobBuilder<*>.deployDocs() {
1616
uses(
1717
name = "Generate API docs",
1818
action = GradleBuildAction(
19-
arguments = ":library:dokkaHtml --no-configuration-cache",
19+
arguments = ":github-workflows-kt:dokkaHtml --no-configuration-cache",
2020
),
2121
)
2222
run(

.github/workflows/release-docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
name: 'Generate API docs'
4949
uses: 'gradle/gradle-build-action@v2'
5050
with:
51-
arguments: ':library:dokkaHtml --no-configuration-cache'
51+
arguments: ':github-workflows-kt:dokkaHtml --no-configuration-cache'
5252
- id: 'step-6'
5353
name: 'Prepare target directory for API docs'
5454
run: 'mkdir -p to-gh-pages/api-docs'

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
name: 'Generate API docs'
9191
uses: 'gradle/gradle-build-action@v2'
9292
with:
93-
arguments: ':library:dokkaHtml --no-configuration-cache'
93+
arguments: ':github-workflows-kt:dokkaHtml --no-configuration-cache'
9494
- id: 'step-13'
9595
name: 'Prepare target directory for API docs'
9696
run: 'mkdir -p to-gh-pages/api-docs'

0 commit comments

Comments
 (0)