Skip to content

Commit

Permalink
fix: gradlew 권한 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
psychology50 committed Jan 25, 2024
1 parent db357a9 commit 17efda6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,11 @@ jobs:
cache: 'gradle'

- name: Build Gradle
run: ./gradlew bootJar
run: |
chmod +x ./gradlew
./gradlew -version
./gradlew bootJar
shell: bash

- name: docker image build & push
run: |
Expand Down

0 comments on commit 17efda6

Please sign in to comment.