Skip to content

Commit

Permalink
Try to use execute_process with GITHUB_OUTPUT
Browse files Browse the repository at this point in the history
  • Loading branch information
vivaladav authored Oct 29, 2023
1 parent 498736c commit e42e53e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ jobs:
# Save the path for other steps
file(TO_CMAKE_PATH "$ENV{GITHUB_WORKSPACE}/qt/${qt_dir_prefix}" qt_dir)
run echo "qt_dir=$qt_dir" >> "$GITHUB_OUTPUT"
execute_process(COMMAND echo "qt_dir=${qt_dir}" >> "$GITHUB_OUTPUT")
message("[DBG] qt_dir=${qt_dir}")
# download Qt
Expand Down Expand Up @@ -238,7 +238,7 @@ jobs:
file(TO_CMAKE_PATH "$ENV{GITHUB_WORKSPACE}/qtcreator" qtc_dir)
# Save the path for other steps
run echo "qtc_dir=$qtc_dir" >> "$GITHUB_OUTPUT"
execute_process(COMMAND echo "qtc_dir=${qtc_dir}" >> "$GITHUB_OUTPUT")
message("[DBG] qtc_dir=${qtc_dir}")
file(MAKE_DIRECTORY qtcreator)
Expand Down

0 comments on commit e42e53e

Please sign in to comment.