Skip to content

Commit

Permalink
Merge pull request #258 from Team-Tiki/feat/#253-sentry
Browse files Browse the repository at this point in the history
[CHORE] CI,CD에 환경변수 설정
  • Loading branch information
paragon0107 authored Feb 4, 2025
2 parents 232fe54 + 704cd61 commit eb44a54
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/DOCKER-CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ jobs:
working-directory: ${{ env.working-directory }}

- name: 빌드
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
run: |
chmod +x gradlew
./gradlew build -x test
Expand All @@ -46,8 +48,6 @@ jobs:
password: ${{ secrets.DOCKER_LOGIN_ACCESSTOKEN }}

- name: docker image 빌드 및 푸시
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
uses: docker/build-push-action@v4
with:
context: .
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/PROD-CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ jobs:
working-directory: ${{ env.working-directory }}

- name: 빌드
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
run: |
chmod +x gradlew
./gradlew build -x test
Expand All @@ -45,8 +47,6 @@ jobs:
password: ${{ secrets.DOCKER_LOGIN_ACCESSTOKEN_PROD }}

- name: docker image 빌드 및 푸시
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
uses: docker/build-push-action@v4
with:
context: .
Expand Down

0 comments on commit eb44a54

Please sign in to comment.