diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9dabba4..dac06c2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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