CI: improve more ci worflow

This commit is contained in:
mahee96
2026-02-24 01:20:37 +05:30
parent 7553e25bbf
commit af04388aea
2 changed files with 5 additions and 8 deletions

View File

@@ -14,10 +14,6 @@ concurrency:
jobs:
build:
runs-on: macos-26
strategy:
fail-fast: true
matrix:
xcode-version: ['26.2']
steps:
- uses: actions/checkout@v4
@@ -58,7 +54,7 @@ jobs:
- name: Setup Xcode
uses: maxim-lobanov/setup-xcode@v1.6.0
with:
xcode-version: ${{ matrix.xcode-version }}
xcode-version: '26.2'
- name: Restore Cache
id: xcode-cache
@@ -162,10 +158,10 @@ jobs:
python3 scripts/ci/workflow.py deploy \
Dependencies/apps-v2.json \
"_includes/source.json" \
nightly \
"${{ env.ref_name }}" \
"$SHORT_COMMIT" \
"$MARKETING_VERSION" \
"$VERSION" \
"${{ github.ref_name }}" \
"${{ env.ref_name }}" \
"com.SideStore.SideStore" \
"SideStore.ipa"

View File

@@ -7,6 +7,7 @@ from pathlib import Path
import time
import json
# REPO ROOT relative to script dir
ROOT = Path(__file__).resolve().parents[2]
@@ -288,7 +289,7 @@ COMMANDS = {
# ----------------------------------------------------------
# VERSION / MARKETING
# ----------------------------------------------------------
"get-marketing-version" : (set_marketing_version, 1, "<qualified_version>"),
"get-marketing-version" : (get_marketing_version, 0, ""),
"set-marketing-version" : (set_marketing_version, 1, "<qualified_version>"),
"compute-qualified" : (compute_qualified_version, 4, "<marketing> <build_num> <channel> <short_commit>"),
"reserve_build_number" : (reserve_build_number, 1, "<repo>"),