Skip to content

Commit

Permalink
chore: action 로그 레벨 조정
Browse files Browse the repository at this point in the history
  • Loading branch information
belljun3395 committed Aug 8, 2024
1 parent 95ab575 commit e1f2e7c
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/code-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,27 +36,27 @@ jobs:

- name: Jooq Code Generation
run: |
./gradlew --info jooqCodegenAll
./gradlew jooqCodegenAll
- name: Test with Gradle
run: |
./gradlew --info test -parallel
./gradlew test -parallel
- name: Build with Gradle
run: |
./gradlew --info api:build -x test
./gradlew api:build -x test
- name: Generate OpenAPI3
run: |
./gradlew --info api:openapi3 -PserverUrl=https://api.fewletter.site
./gradlew api:openapi3 -PserverUrl=https://api.fewletter.site
- name: Generate Swagger
run: |
./gradlew --info api:generateStaticSwaggerUIApi
./gradlew api:generateStaticSwaggerUIApi
- name : Docker Login
run: docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}

- name: Build Docker Image
run: |
./gradlew --info api:buildDockerImage -PimageName=fewletter/api -PreleaseVersion=${{ env.RELEASE_VERSION }}
./gradlew api:buildDockerImage -PimageName=fewletter/api -PreleaseVersion=${{ env.RELEASE_VERSION }}
4 changes: 2 additions & 2 deletions .github/workflows/ecs-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,11 @@ jobs:
- name: Generate OpenAPI3
run: |
./gradlew --info api:openapi3 -PserverUrl=https://api.fewletter.site
./gradlew api:openapi3 -PserverUrl=https://api.fewletter.site
- name: Generate Swagger
run: |
./gradlew --info api:generateStaticSwaggerUIApi
./gradlew api:generateStaticSwaggerUIApi
- name: Build with Gradle bootBuildImage, tag, and push image to Amazon ECR
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ecs-dev-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,11 @@ jobs:
- name: Generate OpenAPI3
run: |
./gradlew --info api:openapi3 -PserverUrl=https://api.fewletter.shop
./gradlew api:openapi3 -PserverUrl=https://api.fewletter.shop
- name: Generate Swagger
run: |
./gradlew --info api:generateStaticSwaggerUIApi
./gradlew api:generateStaticSwaggerUIApi
- name: Build with Gradle bootBuildImage, tag, and push image to Amazon ECR
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ jobs:
run: chmod +x gradlew

- name: Test with Ktlint
run: ./gradlew --info ktlintCheck
run: ./gradlew ktlintCheck
4 changes: 2 additions & 2 deletions .github/workflows/sql-explain-hook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ jobs:
- name: Jooq Code Generation
run: |
./gradlew --info jooqCodegenAll
./gradlew jooqCodegenAll
- name: Generate Explain Docs
run: |
./gradlew --info api-repo:generateExplainDocs
./gradlew api-repo:generateExplainDocs
- name: Zip Explain Docs
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/validate-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ jobs:
- name: Jooq Code Generation
run: |
./gradlew --info jooqCodegenAll
./gradlew jooqCodegenAll
- name: Test with Gradle
run: |
./gradlew --info test -parallel
./gradlew test -parallel

0 comments on commit e1f2e7c

Please sign in to comment.