Skip to content

Commit

Permalink
Update CD.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
yeriinnn authored May 21, 2024
1 parent e093531 commit 7f2193a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ jobs:

steps:
# 작업에서 액세스할 수 있도록 $GITHUB_WORKSPACE에서 저장소를 체크아웃합니다.
- name: Checkout repository
- uses: actions/checkout@v2

- name: Set up JDK 17
uses: actions/setup-java@v2
with:
Expand All @@ -29,11 +31,10 @@ jobs:

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

- name: Build with Gradle
run: ./gradlew build
shell: bash
run: ./gradlew clean build --exclude-task test
working-directory: ./

- name: Make zip file
run: zip -r ./$GITHUB_SHA.zip .
Expand Down

0 comments on commit 7f2193a

Please sign in to comment.