Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FIX: missing input parameter #132

Merged
merged 2 commits into from
Jan 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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