Skip to content

Commit d928e4f

Browse files
authored
Merge pull request #299 from GSM-MSG/298-deploy/cd-workflow-yml-overwrite
🔀 :: application.yml overwrite job
2 parents 952339b + 1abdb52 commit d928e4f

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/Gauth-CD.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@ jobs:
2525
run: chmod +x ./gradlew
2626
shell: bash
2727

28+
- name: Create application.yml
29+
run: |
30+
touch ./src/main/resources/application.yml
31+
echo "${{ secrets.APPLICATION_YML }}" > ./src/main/resources/application.yml
32+
shell: bash
2833

2934
- name: Build with Gradle
3035
run: ./gradlew clean build -i -x test

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ jobs:
4545
shell: bash
4646

4747
- name: Build with Gradle
48-
run: ./gradlew clean build
48+
run: ./gradlew clean build -x test

0 commit comments

Comments
 (0)