Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
secrets 참조 에러
secrets
에 저장했던application.yml
,application-oauth.yml
정보를 직접 참조해서 사용했는데 다음 에러가 발생했습니다.아래는
deploy.yml
에서 문제가 발생한 코드입니다.${{ secrets.APP_SECRET }}
에서 위 에러가 발생했습니다.actions/runner에서 이와 비슷한 문제를 다루는 issue가 있는걸 확인했고 인식을 제대로 하지못해 발생하는 문제로 보입니다.
임시 방편으로 참조하려는 내용을 환경변수
env
에 저장한 후 사용하면 해결할 수 있다는 언급이 있어 그렇게 수정했습니다.References