Skip to content

Commit

Permalink
Fixed OnPush.yml commands
Browse files Browse the repository at this point in the history
  • Loading branch information
FangCunWuChang committed Jun 10, 2024
1 parent 92c3606 commit 761894e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/OnPush.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,12 @@ jobs:
- name: Install Packages MSVC
if: runner.os == 'Windows' && matrix.compiler == 'MSVC'
working-directory: ${{github.workspace}}/vcpkg
run: set PATH=%LIB%;%PATH% && vcpkg install --x-manifest-root=../scripts/vcpkg-manifest --x-install-root=./installed --triplet=x64-windows
run: $env:PATH+=";$env:LIB"; vcpkg install --x-manifest-root=../scripts/vcpkg-manifest --x-install-root=./installed --triplet=x64-windows

- name: Install Packages MinGW
if: runner.os == 'Windows' && matrix.compiler == 'MinGW'
working-directory: ${{github.workspace}}/vcpkg
run: set PATH=%LIB%;%PATH% && vcpkg install --x-manifest-root=../scripts/vcpkg-manifest --x-install-root=./installed --triplet=x64-mingw-dynamic
run: $env:PATH+=";$env:LIB"; vcpkg install --x-manifest-root=../scripts/vcpkg-manifest --x-install-root=./installed --triplet=x64-mingw-dynamic

- name: Archive vcpkg Logs
if: ${{ !cancelled() }}
Expand Down

0 comments on commit 761894e

Please sign in to comment.