We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7820135 commit b710f9cCopy full SHA for b710f9c
src/ci/shared.sh
@@ -104,7 +104,7 @@ function ciCommandAddPath {
104
if isAzurePipelines; then
105
echo "##vso[task.prependpath]${path}"
106
elif isGitHubActions; then
107
- echo "::add-path::${path}"
+ echo "${path}" >> "${GITHUB_PATH}"
108
else
109
echo "ciCommandAddPath only works inside CI!"
110
exit 1
@@ -122,7 +122,7 @@ function ciCommandSetEnv {
122
123
echo "##vso[task.setvariable variable=${name}]${value}"
124
125
- echo "::set-env name=${name}::${value}"
+ echo "${name}=${value}" >> "${GITHUB_ENV}"
126
127
echo "ciCommandSetEnv only works inside CI!"
128
0 commit comments