Skip to content

Commit

Permalink
CI: use absolute path for chocolatey
Browse files Browse the repository at this point in the history
This commit should be reworked once chocolatey is correctly
installed inside the self-hosted runner. Ftm, the installation
is done through the CI and this patch is required to let the
workflow run smoothly
  • Loading branch information
SMoraisAnsys committed Dec 8, 2023
1 parent 999a2cd commit bae06ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/full_documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ jobs:
}
# Check if Pandoc is installed
if (!(choco list --local-only -r pandoc)) {
if (!(C:\ProgramData\chocolatey\bin\choco list --local-only -r pandoc)) {
# Install Pandoc
choco install pandoc -y
C:\ProgramData\chocolatey\bin\choco install pandoc -y
}
- name: 'Create virtual env'
Expand Down

0 comments on commit bae06ca

Please sign in to comment.