From 617be5a403c805075403a833026b1845ff7fd23b Mon Sep 17 00:00:00 2001 From: Leland Lucius Date: Thu, 8 Oct 2020 09:01:46 -0500 Subject: [PATCH] Convert deprecated set-env commands --- .github/workflows/cmake_build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cmake_build.yml b/.github/workflows/cmake_build.yml index f23a88fdd..8a93a9375 100644 --- a/.github/workflows/cmake_build.yml +++ b/.github/workflows/cmake_build.yml @@ -82,16 +82,16 @@ jobs: wxhash="wx_${wxhash}_${RUNNER_OS}_${{matrix.config.platform}}" # Export the commit hash to further steps - echo "::set-env name=WXHASH::${wxhash}" + echo "WXHASH=${wxhash}" >> ${GITHUB_ENV} # Get the short hash shorthash=$(git show -s --format='%h') # Export the short hash for the upload step - echo "::set-env name=SHORTHASH::${shorthash}" + echo "SHORTHASH=${shorthash}" >> ${GITHUB_ENV} # Export the destination directory name - echo "::set-env name=DEST::${{matrix.config.name}}_${shorthash}" + echo "DEST=${{matrix.config.name}}_${shorthash}" >> ${GITHUB_ENV} # ========================================================================= # SHARED: Create and/or retrieve wxWidgets cached build