Skip to content

Commit

Permalink
ci: fix python script flags (#639)
Browse files Browse the repository at this point in the history
  • Loading branch information
mowies authored Jan 17, 2023
1 parent 84b5008 commit 5dd046d
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/actions/update-documentation/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,25 @@ runs:
shell: bash

- name: Update documentation
if: inputs.main-version != 'true'
shell: bash
run: python .github/actions/update-documentation/scripts/update_docs.py --version ${{ inputs.version }} --klt-docs doc-repo --klt-repo ${{ inputs.klt-repo }} --klt-examples ${{ inputs.examples-repo }} --update-main=${{ inputs.main-version }}
run: |
python .github/actions/update-documentation/scripts/update_docs.py \
--version ${{ inputs.version }} \
--klt-docs doc-repo \
--klt-repo ${{ inputs.klt-repo }} \
--klt-examples ${{ inputs.examples-repo }}
- name: Update documentation
if: inputs.main-version == 'true'
shell: bash
run: |
python .github/actions/update-documentation/scripts/update_docs.py \
--version ${{ inputs.version }} \
--klt-docs doc-repo \
--klt-repo ${{ inputs.klt-repo }} \
--klt-examples ${{ inputs.examples-repo }} \
--update-main
- name: Commit changes
uses: EndBug/add-and-commit@v9
Expand Down

0 comments on commit 5dd046d

Please sign in to comment.