Skip to content

Commit 023f9b9

Browse files
authored
Update aws.yml
1 parent ee5cb3d commit 023f9b9

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/aws.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,11 @@ jobs:
2121
java-version: 17
2222

2323
- name: Set up application.properties
24-
run: echo "${{ secrets.APPLICATION_PROD }}" > ./src/main/resources/application.properties
24+
run: |
25+
mkdir -p ./src/main/resources
26+
cd ./src/main/resources
27+
touch ./application.yml
28+
echo "${{ secrets.APPLICATION_PROD }}" > ./src/main/resources/application.properties
2529
2630
# Gradle Build
2731
- name: Build with Gradle

0 commit comments

Comments
 (0)