Skip to content

Commit b98525a

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents fe8529d + e065500 commit b98525a

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

โ€Ž.github/workflows/CI.ymlโ€Ž

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ jobs:
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: |
@@ -34,6 +38,7 @@ jobs:
3438
- name: Set up application-S3.yml
3539
run: |
3640
echo "${{ secrets.AWSS3}}" >> src/main/resources/application-secret.yml
41+
3742
3843
3944

โ€Ž.github/workflows/CI_develop.ymlโ€Ž

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
ย (0)