Skip to content

Commit b12c337

Browse files
committed
Fix ipa format and add dsstore to gitignore
1 parent 97fe79f commit b12c337

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
run: mkdir -p Payload
3535

3636
- name: Copy App to Payload
37-
run: cp -R build/StosVPN.xcarchive/Products/Applications/StosVPN.app Payload/
37+
run: cp -R build/StosVPN.xcarchive/Products/Applications/StosVPN.app Payload/StosVPN.app
3838

3939
- name: Find and Sign App Extension
4040
run: |
@@ -58,7 +58,7 @@ jobs:
5858
- name: Create IPA
5959
run: |
6060
cd Payload
61-
zip -r ../StosVPN-fakesigned.ipa .
61+
zip -r ../StosVPN-fakesigned.ipa Payload
6262
cd .. # Go back to the root directory
6363
6464
- name: Upload IPA Artifact

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
*.ipa
2-
/build
2+
/build
3+
4+
**/.DS_Store

0 commit comments

Comments
 (0)