Skip to content

Commit

Permalink
ci: fix path for docs auto update action (#637)
Browse files Browse the repository at this point in the history
  • Loading branch information
mowies authored Jan 17, 2023
1 parent 1acaf33 commit 84b5008
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/update-documentation/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@ runs:
fetch-depth: 0

- name: Install dependencies
run: pip install -r .github/scripts/doc_update/requirements.txt
run: pip install -r .github/actions/update-documentation/scripts/requirements.txt
shell: bash

- name: Update documentation
shell: bash
run: python .github/actions/update-documentation/scripts/doc_update/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 }} --update-main=${{ inputs.main-version }}

- name: Commit changes
uses: EndBug/add-and-commit@v9
Expand Down

0 comments on commit 84b5008

Please sign in to comment.