Skip to content

Commit b19ef1f

Browse files
committed
[FIX] CI 환경변수 설정
1 parent cf43174 commit b19ef1f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ jobs:
3131

3232
- name: Run container and check if it stays up for 5 seconds
3333
run: |
34-
docker run -d --name test-container ${{ secrets.DOCKER_HUB_USERNAME }}/commit-api:latest
34+
docker run -d --name test-container \
35+
-e FIREBASE_SERVICE_ACCOUNT_BASE64="${{ secrets.FIREBASE_SERVICE_ACCOUNT_BASE64 }}" \
36+
${{ secrets.DOCKER_HUB_USERNAME }}/commit-api:latest
3537
sleep 5
3638
CONTAINER_STATUS=$(docker inspect -f '{{.State.Running}}' test-container)
3739
docker logs test-container

0 commit comments

Comments
 (0)