Skip to content

Commit

Permalink
build 환경변수 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminuj authored Sep 12, 2024
1 parent 571d81e commit b01f066
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,13 @@ jobs:
DB_NAME: testdb
DB_USERNAME: admin
DB_PASSWORD: admin!
run: profile=test ./gradlew clean build --warning-mode=all --stacktrace
profile: test
JWT_SECRET_KEY: ${{secrets.JWT_SECRET_KEY}}
AWS_ACCESS_KEY: ${{secrets.AWS_ACCESS_KEY}}
AWS_SECRET_KEY: ${{secrets.AWS_SECRET_KEY}}
AWS_S3_BUCKET: ${{secrets.AWS_S3_BUCKET}}
AWS_REGION: ${{secrets.AWS_REGION}}
run: ./gradlew clean build --warning-mode=all --stacktrace

# NOTE: The Gradle Wrapper is the default and recommended way to run Gradle (https://docs.gradle.org/current/userguide/gradle_wrapper.html).
# If your project does not have the Gradle Wrapper configured, you can use the following configuration to run Gradle with a specified version.
Expand Down

0 comments on commit b01f066

Please sign in to comment.