Skip to content

Commit 93380c9

Browse files
committed
fix(ci): Compile 'tpws' during build process (missing binary fix)
1 parent 9bf916c commit 93380c9

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
- name: Build Swift Project
2121
run: |
2222
ls -la
23+
cd zapret_src && make mac && cd ..
2324
swift build -c release
2425
2526
- name: Create App Bundle and DMG

Sources/main.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ struct ContentView: View {
153153

154154
Spacer()
155155

156-
Text(installerManager.isInstalled ? "v1.0.10" : "")
156+
Text(installerManager.isInstalled ? "v1.0.11" : "")
157157
.font(.caption2)
158158
.foregroundStyle(.tertiary)
159159
}

create_app.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ cat > "$OUTPUT_DIR/$APP_NAME.app/Contents/Info.plist" <<EOF
3939
<string>AppIcon</string>
4040
<key>CFBundlePackageType</key>
4141
<string>APPL</string>
42-
<string>1.0.10</string>
42+
<string>1.0.11</string>
4343
<key>LSMinimumSystemVersion</key>
4444
<string>15.0</string>
4545
<key>LSUIElement</key>

0 commit comments

Comments
 (0)