Skip to content

Commit dbec96b

Browse files
FIX: missing input parameter (#132)
Co-authored-by: Roberto Pastor Muela <[email protected]>
1 parent cafd3f8 commit dbec96b

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

doc-deploy-dev/action.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ inputs:
1919
description: 'Workflow name from where the artifacts are downloaded. By default, the current running workflow.'
2020
required: false
2121
type: string
22+
checkout:
23+
description: 'If ``True``, the project is checked out in the ``gh-pages`` branch. If ``False``, users are the ones in charge of performing the checkout step.'
24+
required: false
25+
default: true
26+
type: string
2227

2328
runs:
2429
using: "composite"
@@ -31,7 +36,7 @@ runs:
3136
3237
- name: "Checkout project in the GitHub Pages branch"
3338
uses: actions/checkout@v3
34-
if: ${{ inputs.checkout == 'true' }}
39+
if: inputs.checkout == 'true'
3540
with:
3641
ref: 'gh-pages'
3742

0 commit comments

Comments
 (0)