diff options
author | albert-github <albert.tests@gmail.com> | 2021-01-19 12:23:29 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2021-01-19 12:23:29 (GMT) |
commit | 02aea12e45fa65652f6f5cf1be86777506646904 (patch) | |
tree | 113ac01b06c1f6f2ffcfefe804721b3ef9c3f5b8 /.github/workflows/build_cmake.yml | |
parent | c1d50f10afc12849c06c4c6019297fc49e173a0d (diff) | |
download | Doxygen-02aea12e45fa65652f6f5cf1be86777506646904.zip Doxygen-02aea12e45fa65652f6f5cf1be86777506646904.tar.gz Doxygen-02aea12e45fa65652f6f5cf1be86777506646904.tar.bz2 |
Github Actions could not find version 4.0 of MiKTeX
- Another place ...
- corrected test
Diffstat (limited to '.github/workflows/build_cmake.yml')
-rw-r--r-- | .github/workflows/build_cmake.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build_cmake.yml b/.github/workflows/build_cmake.yml index 9f981a1..6071771 100644 --- a/.github/workflows/build_cmake.yml +++ b/.github/workflows/build_cmake.yml @@ -77,7 +77,7 @@ jobs: } Catch [Exception] { Write-Host $_.Exception | format-list -force } - } while (((Test-Path "miktexsetup-x64.zip") -eq $false) -and ($attemptCount -le $maxAttempts)) + } while (((Test-Path "miktexsetup-4.1-x64.zip") -eq $false) -and ($attemptCount -le $maxAttempts)) shell: pwsh if: matrix.config.os == 'windows-latest' @@ -135,7 +135,7 @@ jobs: - name: Install MikTex packages (Windows) shell: bash run: | - ./miktexsetup --local-package-repository=C:/miktex-repository \ + ./miktexsetup_standalone --local-package-repository=C:/miktex-repository \ --package-set=essential \ --shared \ install |