Skip to content

Commit

Permalink
Fix: github action application.properties 사용 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
mjttong committed Aug 26, 2024
1 parent 7e3eab2 commit 520cea2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ jobs:
- name: Grant execute permission for gradlew
run: chmod +x gradlew

## create application-prod.yml
- name: create application.yml
## create application-prod.properties
- name: create application.properties
run: |
cd ./src/main
cd ./resources
touch ./application.yml
touch ./application.properties
ls *
echo "${{ secrets.APPLICATION_YML }}" > ./application.yml
echo "${{ secrets.APPLICATION_PROPERTIES }}" > ./application.properties
- name: Build with Gradle
run: ./gradlew build -x test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
@Configuration
public class S3Config {

@Value("${cloud.aws.credentials.accessKey}")
@Value("${cloud.aws.credentials.access-key}")
private String accessKey;

@Value("${cloud.aws.credentials.secretKey}")
@Value("${cloud.aws.credentials.secret-key}")
private String secretKey;

@Value("${cloud.aws.region.static}")
Expand Down

0 comments on commit 520cea2

Please sign in to comment.