Skip to content

Commit 3e9ee39

Browse files
committed
fix: Update build scripts and workflows to use unified build script and set macOS minimum version to 14.0
1 parent cf74779 commit 3e9ee39

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

.github/workflows/cicd.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ jobs:
157157
158158
- name: 🏗️ Build App Bundle
159159
run: |
160-
./build_app.sh release
160+
./build_app_unified.sh release
161161
echo "✅ App bundle created"
162162
163163
- name: 📦 Create Release Assets
@@ -213,7 +213,7 @@ jobs:
213213
echo "EOF" >> $GITHUB_OUTPUT
214214
215215
- name: 🐙 Create GitHub Release
216-
uses: ncipollo/create-release@v1
216+
uses: ncipollo/create-release@v1.14.0
217217
with:
218218
tag: ${{ github.ref_name }}
219219
name: "${{ env.APP_NAME }} ${{ env.BETA_VERSION }}"
@@ -404,7 +404,7 @@ jobs:
404404
405405
- name: 🏗️ Build App Bundle
406406
run: |
407-
./build_app.sh release
407+
./build_app_unified.sh release
408408
echo "✅ App bundle created"
409409
410410
- name: 📦 Create Release Assets
@@ -459,7 +459,7 @@ jobs:
459459
echo "EOF" >> $GITHUB_OUTPUT
460460
461461
- name: 🐙 Create GitHub Release
462-
uses: ncipollo/create-release@v1
462+
uses: ncipollo/create-release@v1.14.0
463463
with:
464464
tag: ${{ github.ref_name }}
465465
name: "${{ env.APP_NAME }} v${{ env.VERSION }}"

.github/workflows/release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,6 @@ jobs:
152152
body_path: release_notes.md
153153
draft: false
154154
prerelease: false
155-
make_latest: true
156155
files: |
157156
dist/${{ env.APP_NAME }}.app.zip
158157
dist/build-info.txt

ClickIt/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
<key>LSMinimumSystemVersion</key>
22-
<string>15.0</string>
22+
<string>14.0</string>
2323
<key>LSUIElement</key>
2424
<false/>
2525
<key>NSHighResolutionCapable</key>

build_app_unified.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ else
219219
<key>CFBundleVersion</key>
220220
<string>$BUILD_NUMBER</string>
221221
<key>LSMinimumSystemVersion</key>
222-
<string>14.0</string>
222+
<string>${MACOSX_DEPLOYMENT_TARGET:-14.0}</string>
223223
<key>LSUIElement</key>
224224
<false/>
225225
<key>NSHighResolutionCapable</key>

0 commit comments

Comments
 (0)