Skip to content

Commit

Permalink
FIX: missing input parameter (#132)
Browse files Browse the repository at this point in the history
Co-authored-by: Roberto Pastor Muela <roberto.pastormuela@ansys.com>
  • Loading branch information
jorgepiloto and RobPasMue authored Jan 10, 2023
1 parent cafd3f8 commit dbec96b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion doc-deploy-dev/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ inputs:
description: 'Workflow name from where the artifacts are downloaded. By default, the current running workflow.'
required: false
type: string
checkout:
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.'
required: false
default: true
type: string

runs:
using: "composite"
Expand All @@ -31,7 +36,7 @@ runs:
- name: "Checkout project in the GitHub Pages branch"
uses: actions/checkout@v3
if: ${{ inputs.checkout == 'true' }}
if: inputs.checkout == 'true'
with:
ref: 'gh-pages'

Expand Down

0 comments on commit dbec96b

Please sign in to comment.