Skip to content

Commit c12ecc0

Browse files
author
Oleh Kulykov
committed
1722334567
1 parent 9cb349c commit c12ecc0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/cmake-multi-platform.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,9 @@ jobs:
5656
# Turn repeated input strings (such as the build output directory) into step outputs. These step outputs can be used throughout the workflow file.
5757
id: strings
5858
shell: bash
59-
run: echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT"
60-
run: echo "build-artifacts-dir=${{ github.workspace }}/artifacts" >> "$GITHUB_ARTIFACTS"
59+
run: |
60+
echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT"
61+
echo "build-artifacts-dir=${{ github.workspace }}/artifacts" >> "$GITHUB_ARTIFACTS"
6162
6263
- name: Configure CMake
6364
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.

0 commit comments

Comments
 (0)