Skip to content

Commit

Permalink
Hotfix: develop-cd.yml indent 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
adorableco committed Sep 10, 2024
1 parent 12213d2 commit 6f7e346
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 13 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/develop-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand Down
11 changes: 0 additions & 11 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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<JavaCompile> {
Expand Down

0 comments on commit 6f7e346

Please sign in to comment.