Skip to content

Commit

Permalink
refactor: 명령어별 run 속성에서 여러 줄의 run으로 변경
Browse files Browse the repository at this point in the history
Setup Java JDK 작업에서 run 속성에 gradlew 파일의 권한을 변경하는 것은 부수적인 작업이므로, ./gradlew build 명령어와 하나의 run 속성에 포함하도록 변경하였습니다.
  • Loading branch information
limvik authored Nov 18, 2023
1 parent 1683236 commit 77e4e0a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build-test-containerize.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@ jobs:
with:
distribution: 'temurin'
java-version: '17'
- run: chmod +x gradlew
- run: ./gradlew build
- run:
chmod +x gradlew
./gradlew build

- name: Docker Login
uses: docker/[email protected]
Expand Down

0 comments on commit 77e4e0a

Please sign in to comment.