diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2020-12-13 10:54:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-13 10:54:18 (GMT) |
commit | bb201fcedab7b99562f787afcc44c9727539e2bf (patch) | |
tree | 4dac4ad6d3ff7b24c3364c06c85ebf758fd6498f /.github/workflows | |
parent | c8125934b6c4378615e3cea3caf4b8f5ccbab891 (diff) | |
download | Doxygen-bb201fcedab7b99562f787afcc44c9727539e2bf.zip Doxygen-bb201fcedab7b99562f787afcc44c9727539e2bf.tar.gz Doxygen-bb201fcedab7b99562f787afcc44c9727539e2bf.tar.bz2 |
Update build_cmake.yml
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build_cmake.yml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/build_cmake.yml b/.github/workflows/build_cmake.yml index 1638c60..d439c56 100644 --- a/.github/workflows/build_cmake.yml +++ b/.github/workflows/build_cmake.yml @@ -61,9 +61,10 @@ jobs: steps: - uses: actions/checkout@v1 - - uses: actions/download-artifact@v2 + - uses: suisei-cn/actions-download-file@v1 with: - name: https://miktex.org/download/win/miktexsetup-x64.zip + url: "https://miktex.org/download/win/miktexsetup-x64.zip" + target: . if: matrix.config.os == 'windows-latest' - name: Install LaTeX (Linux) @@ -119,7 +120,7 @@ jobs: -S . -B build -D CMAKE_BUILD_TYPE=$ENV{BUILD_TYPE} - -G ${{ matrix.config.build_gen }} + -G "${{ matrix.config.build_gen }}" -Dbuild_doc=YES -Dbuild_app=YES -Dbuild_parse=YES |