-
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
0e0da8d
commit d11626a
Showing
1 changed file
with
16 additions
and
3 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 |
---|---|---|
|
@@ -37,10 +37,23 @@ jobs: | |
cd board # 'board' 디렉토리로 이동 | ||
./gradlew build # Windows에서 gradlew.bat 사용해 빌드 | ||
- name: Check if JAR file exists | ||
- name: Check build directory | ||
run: ls -R ./build/ | ||
|
||
- name: Check build directory | ||
run: | | ||
ls -R ./build/ | ||
# 또는 find 명령어로 .jar 파일 찾기 | ||
find . -name "*.jar" | ||
- name: Check build directory | ||
run: ls -R ./build/libs | ||
|
||
- name: Check build directory | ||
run: | | ||
echo "Checking if JAR file exists" | ||
ls ./build/libs/ | ||
ls -R ./build/libs | ||
# 또는 find 명령어로 .jar 파일 찾기 | ||
find . -name "*.jar" | ||
- name: Setup SSH | ||
uses: webfactory/[email protected] | ||
|