Skip to content

Commit b47490d

Browse files
committed
[FIX] 컨테이너 안에 임시 디렉토리 생성
1 parent fd6f9da commit b47490d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
docker run -d --name test-container \
3535
-e FIREBASE_SERVICE_ACCOUNT_BASE64="${{ secrets.FIREBASE_SERVICE_ACCOUNT_BASE64 }}" \
3636
${{ secrets.DOCKER_HUB_USERNAME }}/commit-api:latest \
37-
/bin/sh -c "echo \$FIREBASE_SERVICE_ACCOUNT_BASE64 | base64 -d > /app/config/service-account-key.json && node src/index.js"
37+
/bin/sh -c "mkdir -p /app/config && echo \$FIREBASE_SERVICE_ACCOUNT_BASE64 | base64 -d > /app/config/service-account-key.json && node src/index.js"
3838
sleep 5
3939
CONTAINER_STATUS=$(docker inspect -f '{{.State.Running}}' test-container)
4040
docker logs test-container

0 commit comments

Comments
 (0)