File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 56
56
# Turn repeated input strings (such as the build output directory) into step outputs. These step outputs can be used throughout the workflow file.
57
57
id : strings
58
58
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"
61
62
62
63
- name : Configure CMake
63
64
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
You can’t perform that action at this time.
0 commit comments