Skip to content

Commit

Permalink
DEP-000 불필요한 빌드 로그 줄이기 (#81)
Browse files Browse the repository at this point in the history
* config: log level 변경

* config: action 수동으로 실행 할 수 있게 변경
  • Loading branch information
junhaesung authored Dec 18, 2022
1 parent d25353c commit 46ca567
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
name: Build
on:
workflow_dispatch:
push:
branches:
- develop
Expand Down Expand Up @@ -33,4 +34,4 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: chmod +x ./gradlew && ./gradlew build sonarqube --info
run: chmod +x ./gradlew && ./gradlew --warn build sonarqube --info
5 changes: 3 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
name: Build
name: Deploy
on:
workflow_dispatch:
push:
branches:
- develop
Expand All @@ -22,7 +23,7 @@ jobs:
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle
- name: Build
run: chmod +x ./gradlew && ./gradlew build
run: chmod +x ./gradlew && ./gradlew --quiet build
- name: Fetch credential file from secrets
id: fetch_credential_file
uses: timheuer/base64-to-file@v1
Expand Down

0 comments on commit 46ca567

Please sign in to comment.