Skip to content

Commit 3d0bd88

Browse files
committed
fix: Outputs Heredoc으로 수정
1 parent 1b66c3e commit 3d0bd88

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/deploy-dev.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,10 @@ jobs:
7070

7171
- name: Get Terraform Outputs
7272
id: get-outputs
73-
run: echo "data=$(terraform output -json)" >> $GITHUB_OUTPUT
73+
run: |
74+
echo "data<<EOF" >> $GITHUB_OUTPUT
75+
terraform output -json >> $GITHUB_OUTPUT
76+
echo "EOF" >> $GITHUB_OUTPUT
7477
working-directory: ./terraform/dev
7578

7679
deploy-service:

0 commit comments

Comments
 (0)