From 6f7e346afe867b61b544d7be8e25722546a59eea Mon Sep 17 00:00:00 2001 From: adorableco Date: Tue, 10 Sep 2024 10:33:54 +0900 Subject: [PATCH] =?UTF-8?q?Hotfix:=20develop-cd.yml=20indent=20=EC=98=A4?= =?UTF-8?q?=EB=A5=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/develop-cd.yml | 6 ++++-- build.gradle.kts | 11 ----------- 2 files changed, 4 insertions(+), 13 deletions(-) diff --git a/.github/workflows/develop-cd.yml b/.github/workflows/develop-cd.yml index 6a29c43..26cc09f 100644 --- a/.github/workflows/develop-cd.yml +++ b/.github/workflows/develop-cd.yml @@ -37,7 +37,7 @@ jobs: run: | cd newrelic touch newrelic.yml - echo "${{ secrets.NEW_RELIC_FILE }}" > newrelic.yml + echo "${{ secrets.NEW_RELIC_FILE }}" | base64 --decode > newrelic.yml shell: bash @@ -50,8 +50,10 @@ jobs: - name: Docker build run: | + ls -l newrelic/ + cat newrelic/newrelic.jar docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }} - docker build -t app . + docker build --no-cache -t app . docker tag app ${{ secrets.DOCKER_USERNAME }}/phote:latest docker push ${{ secrets.DOCKER_USERNAME }}/phote:latest diff --git a/build.gradle.kts b/build.gradle.kts index 1730870..794876f 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -112,17 +112,6 @@ buildscript { } } -// sentry { -// // Generates a JVM (Java, Kotlin, etc.) source bundle and uploads your source code to Sentry. -// // This enables source context, allowing you to see your source -// // code as part of your stack traces in Sentry. -// includeSourceContext = true -// -// org = "swm-standard" -// projectName = "phote" -// authToken ="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" -// } - // Querydsl val generated = file("src/main/generated") tasks.withType {