Skip to content

Commit 4706193

Browse files
committed
Fix build issues
1 parent 3cb8e78 commit 4706193

3 files changed

Lines changed: 6 additions & 15 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -52,18 +52,6 @@ jobs:
5252
file_to_build=`ls -A | grep -i \\.xcworkspace\$ || ls -A | grep -i \\.xcodeproj\$`
5353
file_to_build=`echo $file_to_build | awk '{$1=$1;print}'`
5454
echo "file_to_build=$file_to_build" >> $GITHUB_OUTPUT
55-
- name: Build
56-
env:
57-
scheme: ${{ steps.scheme.outputs.scheme }}
58-
filetype_parameter: ${{ steps.filetype_parameter.outputs.filetype_parameter }}
59-
file_to_build: ${{ steps.file_to_build.outputs.file_to_build }}
60-
run: xcodebuild clean build -scheme "$scheme" -"$filetype_parameter" "$file_to_build" -sdk iphoneos -arch arm64 -configuration Release CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO | xcpretty && exit ${PIPESTATUS[0]}
61-
- name: Analyze
62-
env:
63-
scheme: ${{ steps.scheme.outputs.scheme }}
64-
filetype_parameter: ${{ steps.filetype_parameter.outputs.filetype_parameter }}
65-
file_to_build: ${{ steps.file_to_build.outputs.file_to_build }}
66-
run: xcodebuild analyze -scheme "$scheme" -"$filetype_parameter" "$file_to_build" -sdk iphoneos -arch arm64 -configuration Release CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO | xcpretty && exit ${PIPESTATUS[0]}
6755
- name: Archive
6856
env:
6957
scheme: ${{ steps.scheme.outputs.scheme }}
@@ -131,6 +119,8 @@ jobs:
131119
cancel-in-progress: true
132120

133121
steps:
122+
- name: Checkout
123+
uses: actions/checkout@v4
134124
- name: Download a Build Artifact
135125
uses: actions/download-artifact@v4
136126
with:
@@ -153,3 +143,4 @@ jobs:
153143
This is a nightly release [created automatically with GitHub Actions workflow](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}).
154144
files: |
155145
${{ needs.package.outputs.artifact }}
146+
altstore.json

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ This project is still a major WIP, so apologies for the currently lackluster doc
77
Before building, make sure you have the Parsec SDK framework symlinked or copied to the `Frameworks` folder. Builds were tested on Xcode Version 12.5.
88

99
## Downloads
10-
<a href="https://celloserenity.github.io/altdirect/?url=https://github.com/OpenParsec/OpenParsec/releases/download/nightly/apps_nightly.json" target="_blank">
10+
<a href="https://celloserenity.github.io/altdirect/?url=https://github.com/hugeBlack/OpenParsec/releases/download/nightly/altstore.json" target="_blank">
1111
<img src="https://github.com/CelloSerenity/altdirect/blob/main/assets/png/AltSource_Blue.png?raw=true" alt="Add AltSource" width="200">
1212
</a>
13-
<a href="https://github.com/OpenParsec/OpenParsec/releases/download/nightly/OpenParsec.ipa" target="_blank">
13+
<a href="https://github.com/hugeBlack/OpenParsec/releases/download/nightly/OpenParsec.ipa" target="_blank">
1414
<img src="https://github.com/CelloSerenity/altdirect/blob/main/assets/png/Download_Blue.png?raw=true" alt="Download .ipa" width="200">
1515
</a>
1616

update_json.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def update_json_file_nightly(json_file, nightly_release):
145145

146146
app = data["apps"][0]
147147

148-
with open("Resources/Info.plist", 'rb') as infile:
148+
with open("OpenParsec/Info.plist", 'rb') as infile:
149149
info_plist = plistlib.load(infile)
150150
full_version = info_plist["CFBundleVersion"]
151151
tag = nightly_release["tag_name"]

0 commit comments

Comments
 (0)