Skip to content

Commit 962ab22

Browse files
committed
Allow overriding docs folder path
1 parent a252605 commit 962ab22

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/gh-pages-publish.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ on:
66
semvertag:
77
required: true
88
type: string
9+
folder:
10+
required: false
11+
type: string
12+
default: 'build/docs/javadoc'
913

1014
permissions:
1115
contents: write
@@ -33,5 +37,5 @@ jobs:
3337
- name: Deploy Docs
3438
uses: JamesIves/github-pages-deploy-action@v4
3539
with:
36-
folder: build/docs/javadoc
40+
folder: ${{ inputs.folder }}
3741
target-folder: ${{ inputs.semvertag }}

0 commit comments

Comments
 (0)