File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -45,16 +45,16 @@ jobs:
4545 # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
4646 # See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
4747 run : |
48- cmake -B ${{github.workspace}}/ build -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -G Ninja
48+ cmake -B build -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -G Ninja
4949
5050 - name : Build
5151 # Build your program with the given configuration
5252 run : |
53- cmake --build ${{github.workspace}}/ build --config ${{matrix.build_type}} -j ${{env.parallel_processes}} --target stellarium
53+ cmake --build build --config ${{matrix.build_type}} -j ${{env.parallel_processes}} --target stellarium
5454
5555 - name : Deploy Artifact
5656 uses : actions/upload-artifact@v4
5757 with :
5858 name : stellarium-windows-${{matrix.build_type}}
59- path : ${{github.workspace}}/ build/src
59+ path : build/src
6060 retention-days : 3 # Don't store to long as stellarium builds are large
You can’t perform that action at this time.
0 commit comments