Skip to content

Commit

Permalink
chore: build action에서 사용하는 secret 값 통일
Browse files Browse the repository at this point in the history
  • Loading branch information
ASak1104 committed Jan 4, 2024
1 parent 6f49503 commit 4d08087
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci-build-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
with:
files: ./docker-compose.yml
env:
services.mysql.environment.MYSQL_DATABASE: ${{secrets.TEST_DATABASE}}
services.mysql.environment.MYSQL_ROOT_PASSWORD: ${{secrets.TEST_DB_PASSWORD}}
services.minio.environment.MINIO_ROOT_USER: ${{secrets.STORAGE_USER}}
services.minio.environment.MINIO_ROOT_PASSWORD: ${{secrets.STORAGE_PASSWORD}}
services.mysql.environment.MYSQL_DATABASE: ${{secrets.MYSQL_DATABASE}}
services.mysql.environment.MYSQL_ROOT_PASSWORD: ${{secrets.MYSQL_PASSWORD}}
services.minio.environment.MINIO_ROOT_USER: ${{secrets.MINIO_USER}}
services.minio.environment.MINIO_ROOT_PASSWORD: ${{secrets.MINIO_PASSWORD}}

# Build and start container
- name: Build and Start Container
Expand Down

0 comments on commit 4d08087

Please sign in to comment.