Skip to content

Commit 11e78a5

Browse files
authored
ci: fixing path variable usage (#9)
ci: fixing path variable usage
1 parent 223648b commit 11e78a5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/actions/publish-docs/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ runs:
1818
name: 'Publish to Github pages'
1919
if: ${{ inputs.dry_run == 'false' }}
2020
with:
21-
docs_path: ${{ workspace_path }}/build/docs/javadoc
22-
output_path: ${{ workspace_path }}
21+
docs_path: ${{ inputs.workspace_path }}/build/docs/javadoc
22+
output_path: ${{ inputs.workspace_path }}
2323
github_token: ${{ inputs.token }}
2424

2525
- name: Dry Run Publish Docs

0 commit comments

Comments
 (0)