Skip to content

Commit e0463ab

Browse files
committed
fix: doppler no-quotes 변경
1 parent 1de7819 commit e0463ab

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,8 @@ jobs:
7979
with:
8080
context: ./backend
8181
push: true
82+
build-args: |
83+
DOPPLER_TOKEN=${{ secrets.DOPPLER_TOKEN }}
8284
cache-from: type=registry,ref=ghcr.io/${{ steps.export_owner.outputs.owner_lc }}/${{ steps.export_image.outputs.image_name }}:cache
8385
cache-to: type=registry,ref=ghcr.io/${{ steps.export_owner.outputs.owner_lc }}/${{ steps.export_image.outputs.image_name }}:cache,mode=max
8486
tags: |
@@ -120,12 +122,12 @@ jobs:
120122
docker rm app1 2>/dev/null || true
121123
122124
export DOPPLER_TOKEN="${{ secrets.DOPPLER_TOKEN }}"
123-
doppler secrets download --project waitfair --config prd --format env --no-file > /tmp/doppler.env
125+
doppler secrets download --project waitfair --config prd --format env-no-quotes --no-file > /tmp/doppler.env
124126
unset DOPPLER_TOKEN
125127
126128
docker run -d --name app1 --network common -p 8080:8080 \
127129
--env-file /tmp/doppler.env \
128130
ghcr.io/${{ needs.buildImageAndPush.outputs.owner_lc }}/${{ needs.buildImageAndPush.outputs.image_name }}:latest
129131
130132
rm -f /tmp/doppler.env
131-
docker image prune -f
133+
docker image prune -f

0 commit comments

Comments
 (0)