Skip to content

Commit 0c15ca0

Browse files
committed
Update bundle-build.yml
1 parent ea0df59 commit 0c15ca0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/bundle-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)