Skip to content

Commit

Permalink
# 경로찾기
Browse files Browse the repository at this point in the history
  • Loading branch information
rlawltjd8547 committed Jan 17, 2025
1 parent 0e0da8d commit d11626a
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions .github/workflows/gradle-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit d11626a

Please sign in to comment.