We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf43174 commit b19ef1fCopy full SHA for b19ef1f
.github/workflows/ci.yml
@@ -31,7 +31,9 @@ jobs:
31
32
- name: Run container and check if it stays up for 5 seconds
33
run: |
34
- docker run -d --name test-container ${{ secrets.DOCKER_HUB_USERNAME }}/commit-api:latest
+ 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
37
sleep 5
38
CONTAINER_STATUS=$(docker inspect -f '{{.State.Running}}' test-container)
39
docker logs test-container
0 commit comments