Skip to content

Commit

Permalink
actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Gomenyuk committed Nov 21, 2024
1 parent 3c81a3e commit 429ebc1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,18 +41,18 @@ jobs:
run: echo "root='${{ steps.runvcpkg.outputs.RUNVCPKG_VCPKG_ROOT_OUT }}', triplet='${{ steps.runvcpkg.outputs.RUNVCPKG_VCPKG_DEFAULT_TRIPLET_OUT }}'"

- name: Run CMake with vcpkg.json manifest
env:
env:
VCPKG_ROOT: ${{ steps.runvcpkg.outputs.RUNVCPKG_VCPKG_ROOT_OUT }}
BUILD_TYPE: Release
BIN_DIR: rel
run: cmake --preset=base
run: cmake -G Ninja --preset
shell: bash

- name: Run build
run: cmake --build ./build/rel
run: cmake --build .build/rel
shell: bash

- name: Run build
run: cmake --install ./build/rel
run: cmake --install .build/rel
shell: bash

0 comments on commit 429ebc1

Please sign in to comment.