We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
set-env
add-path
# 아래와 같은 포맷으로 write # echo "{name}={value}" >> $GITHUB_ENV # example echo "USER_NAME=$(whoami)" >> $GITHUB_ENV
# 아래와 같은 포맷으로 write # {name}<<{delimiter} # {value} # {delimiter} # example echo 'JSON_RESPONSE<<EOF' >> $GITHUB_ENV curl https://httpbin.org/json >> $GITHUB_ENV echo 'EOF' >> $GITHUB_ENV
# 아래와 같은 포맷으로 write # echo "{path}" >> $GITHUB_PATH # example echo "/path/to/dir" >> $GITHUB_PATH
The text was updated successfully, but these errors were encountered:
occidere
No branches or pull requests
GitHub Action 에서 set-env 대신 env file 사용하기
내용
set-env
가 있음set-env
와add-path
커맨드를 deprecated 시켰고, 현재 사용시 에러가 발생set-env
대신 사용하기를 권장하는 Environment Files 로 변경하고자 함Environment Files 이란?
Env 파일에 값 세팅하기
Single variable
Multiline strings
System path 추가
참고
The text was updated successfully, but these errors were encountered: