Skip to content

Commit

Permalink
fix: deploy gradle 설치 방식 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
wldns2577 committed Oct 4, 2023
1 parent 3aa6d8f commit 0514f15
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@ jobs:

- name: Set up Gradlew
run: |
sudo apt-get update
sudo apt-get install gradle-7.3.1
curl -s "https://get.sdkman.io" | bash
source "$HOME/.sdkman/bin/sdkman-init.sh"
sdk install gradle 7.3
sudo gradle wrapper --gradle-version latest
shell: bash # (7) Gradlew 설치

Expand Down Expand Up @@ -68,8 +69,9 @@ jobs:

- name: Set up Gradlew
run: |
sudo apt-get update
sudo apt-get install gradle-7.3.1
curl -s "https://get.sdkman.io" | bash
source "$HOME/.sdkman/bin/sdkman-init.sh"
sdk install gradle 7.3
sudo gradle wrapper --gradle-version latest
shell: bash # (7) Gradlew 설치

Expand Down

0 comments on commit 0514f15

Please sign in to comment.