File tree Expand file tree Collapse file tree 2 files changed +18
-1
lines changed
Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change 2626 - name : Set up application-secret.yml
2727 run : |
2828 echo "${{ secrets.APPLICATION_SECRET}}" > src/main/resources/application-secret.yml
29+
30+ - name : Set up application-File-MaxSize.yml
31+ run : |
32+ echo "${{ secrets.FILE_SIZE}}" >> src/main/resources/application-secret.yml
2933
3034 - name : Set up application-Oauth.yml
3135 run : |
3438 - name : Set up application-S3.yml
3539 run : |
3640 echo "${{ secrets.AWSS3}}" >> src/main/resources/application-secret.yml
41+
3742
3843
3944
Original file line number Diff line number Diff line change @@ -25,11 +25,23 @@ jobs:
2525
2626 - name : Set up application.yml
2727 run : |
28- echo "${{ secrets.APPLICATION}}" > src/main/resources/application.yml
28+ echo "${{ secrets.APPLICATION}}" > src/main/resources/application.yml
2929
3030 - name : Set up application-secret.yml
3131 run : |
3232 echo "${{ secrets.APPLICATION_SECRET}}" > src/main/resources/application-secret.yml
33+
34+ - name : Set up application-File-MaxSize.yml
35+ run : |
36+ echo "${{ secrets.FILE_SIZE}}" >> src/main/resources/application-secret.yml
37+
38+ - name : Set up application-Oauth.yml
39+ run : |
40+ echo "${{ secrets.OAUTHKEY}}" >> src/main/resources/application-secret.yml
41+
42+ - name : Set up application-S3.yml
43+ run : |
44+ echo "${{ secrets.AWSS3}}" >> src/main/resources/application-secret.yml
3345
3446 - name : Grant execute permission for gradlew
3547 run : chmod +x ./gradlew
You canโt perform that action at this time.
0 commit comments