Skip to content

Commit c3afedb

Browse files
authored
[Test] #609 - GitHub Actions 디버그 코드 추가
1 parent 9e1515a commit c3afedb

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,21 @@ jobs:
4343
mkdir -p ~/.gnupg
4444
echo "${{ secrets.MATCH_GIT_PRIVATE_KEY }}" > ~/private-key.asc
4545
gpg --batch --yes --import ~/private-key.asc
46-
46+
47+
- name: Debug: Print directory structure
48+
run: |
49+
echo "== CURRENT DIRECTORY =="
50+
pwd
51+
echo "== FILE STRUCTURE =="
52+
ls -alR
53+
54+
- name: Debug: Confirm .xcodeproj
55+
run: |
56+
echo "== FIND .xcodeproj FILES =="
57+
find . -name "*.xcodeproj"
58+
echo "== VALIDATE project.pbxproj =="
59+
plutil -lint WSSiOS/WSSiOS.xcodeproj/project.pbxproj
60+
4761
- name: Run Fastlane (internal)
4862
working-directory: ${{ github.workspace }}
4963
env:

0 commit comments

Comments
 (0)