Skip to content

Commit

Permalink
Fix workflow not using cmake.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickgold committed Nov 18, 2023
1 parent 608772c commit 3c79a84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ jobs:
$(pwd)/setup-toolchain.sh
- name: "CMake: Configure release"
run: |
cmake --preset=release $(pwd)
$(pwd)/cmake.sh --preset=release $(pwd)
- name: "CMake: Build release"
run: |
cmake --build --preset=release $(pwd)
$(pwd)/cmake.sh --build --preset=release $(pwd)
- name: "Upload artifacts"
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 3c79a84

Please sign in to comment.