Skip to content

Commit

Permalink
Update deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
answad authored Jun 17, 2024
1 parent cb9c74d commit e956cf1
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Deploy
on:
push:
branches:
- main
- main # 메인 브랜치에 푸시할 때마다 워크플로우 실행

jobs:
build:
Expand All @@ -14,10 +14,13 @@ jobs:
uses: actions/checkout@v2

- name: Set up JDK 17
uses: actions/setup-java@v1
uses: actions/setup-java@v2
with:
java-version: '17'

- name: Grant execute permission for gradlew
run: chmod +x ./gradlew

- name: Build with Gradle
run: ./gradlew build

Expand Down

0 comments on commit e956cf1

Please sign in to comment.