-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c9008bc
commit de54e04
Showing
1 changed file
with
5 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,12 +29,6 @@ jobs: | |
- name: Setup Gradle | ||
uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0 | ||
|
||
- name: Debug - List directory | ||
run: ls -la | ||
|
||
- name: Debug - List directory | ||
run: ls -la ./board | ||
|
||
- name: Grant execute permission for gradlew | ||
run: chmod +x ./board/gradlew | ||
|
||
|
@@ -43,6 +37,11 @@ jobs: | |
cd board # 'board' 디렉토리로 이동 | ||
./gradlew build # Windows에서 gradlew.bat 사용해 빌드 | ||
- name: Check if JAR file exists | ||
run: | | ||
echo "Checking if JAR file exists" | ||
ls ./build/libs/ | ||
- name: Setup SSH | ||
uses: webfactory/[email protected] | ||
with: | ||
|