Skip to content

Commit

Permalink
cicd: JAEGER_HOST, JAEGER_PORT 환경변수 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Coldot committed Aug 8, 2024
1 parent d2438c3 commit a07900c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/deploy-chat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,11 +92,16 @@ jobs:

- name: Build with Gradle
run: |
export JAEGER_HOST=$JAEGER_HOST
export JAEGER_PORT=$JAEGER_PORT
touch chat/src/main/resources/application-db.properties
echo "${{ secrets.CHAT_ENV_VARS_DB }}" >> chat/src/main/resources/application-db.properties
cd ./chat
chmod +x ./gradlew
./gradlew build --warning-mode all --scan
env:
JAEGER_HOST: ${{ vars.JAEGER_HOST }}
JAEGER_PORT: ${{ vars.JAEGER_PORT }}

- name: Configure AWS credentials
if: steps.filter.outputs.chat == 'true'
Expand Down

0 comments on commit a07900c

Please sign in to comment.