Skip to content

Commit

Permalink
📝docs : ci.yml Complete
Browse files Browse the repository at this point in the history
  • Loading branch information
DDonghyeo authored May 23, 2024
1 parent 59b9a45 commit 4c71e29
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
name: Backend CI

on:
push:
# pull_request:
pull_request:
branches:
- prod
- develop
- cicd/#61

jobs:
build-test:
Expand All @@ -32,8 +30,7 @@ jobs:
- name: Build with Gradle - config
run: |
cd config-service
./gradlew clean build -x test |& tee config-build.log
cat config-build.log
./gradlew clean build -x test
env:
CONFIG_GIT_URI: ${{ secrets.CONFIG_GIT_URI }}
CONFIG_PASSPHRASE: ${{ secrets.CONFIG_PASSPHRASE }}
Expand All @@ -50,20 +47,17 @@ jobs:
- name: Build with Gradle - noti-service
run: |
cd noti-service
./gradlew clean build -x test |& tee noti-build.log
cat noti-build.log
./gradlew clean build -x test
cd ..
- name: Build with Gradle - user-service
run: |
cd user-service
./gradlew clean build -x test |& tee user-build.log
cat user-build.log
./gradlew clean build -x test
cd ..
- name: Build with Gradle - weather-service
run: |
cd weather-service
./gradlew clean build -x test |& tee user-build.log
cat user-build.log
./gradlew clean build -x test
cd ..

0 comments on commit 4c71e29

Please sign in to comment.