Skip to content

Commit 7c4b6ef

Browse files
authored
[Fix] 작업변수를 못읽는 문제-2 (#278)
* chore: github action local 환경 변수 파일 ignore * fix: docker image name 따옴표로 감싸 문자열 자리 명시 * fix: $env 추가
1 parent e8a3fc7 commit 7c4b6ef

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/docker-build-develop.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
run: |
5050
TAG=$(git rev-parse --short HEAD)
5151
DOCKER_IMAGE=${{ secrets.DOCKER_REGISTRY }}/signal-buddy:$TAG
52-
echo "docker_image=$DOCKER_IMAGE" >> "$GITHUB_OUTPUT"
52+
echo "docker_image=$DOCKER_IMAGE" >> "$env:GITHUB_OUTPUT"
5353
docker build -t test -f submodule/docker/dev.Dockerfile .
5454
docker tag test $DOCKER_IMAGE
5555
docker push $DOCKER_IMAGE

0 commit comments

Comments
 (0)