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 10494e2 commit 78931beCopy full SHA for 78931be
.github/workflows/deploy.yml
@@ -94,7 +94,7 @@ jobs:
94
- name: Create GA4 Service Account Key
95
run: |
96
mkdir -p src/main/resources
97
- echo "${{ secrets.GA4_JSON }}" > src/main/resources/ga4-service-account.json
+ printf "%s" "${{ secrets.GA4_JSON }}" > src/main/resources/ga4-service-account.json
98
99
- name: Docker Buildx 설치
100
uses: docker/setup-buildx-action@v3
@@ -243,7 +243,6 @@ jobs:
243
--restart unless-stopped \
244
--network "${NET}" \
245
-e TZ=Asia/Seoul \
246
- -v /resources/ga4-service-account.json:/app/ga4-service-account.json \
247
"${IMAGE}"
248
249
# ---------------------------------------------------------
0 commit comments