We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee5cb3d commit 023f9b9Copy full SHA for 023f9b9
.github/workflows/aws.yml
@@ -21,7 +21,11 @@ jobs:
21
java-version: 17
22
23
- name: Set up application.properties
24
- run: echo "${{ secrets.APPLICATION_PROD }}" > ./src/main/resources/application.properties
+ 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
29
30
# Gradle Build
31
- name: Build with Gradle
0 commit comments