ci: keep TestFlight package release-only

This commit is contained in:
Haitao Pan 2026-06-30 07:32:58 +08:00
parent 6e31064cd2
commit bd500d66c7

View File

@ -144,7 +144,11 @@ jobs:
- platform: macos - platform: macos
arch: arm64 arch: arm64
package: app-store-pkg package: app-store-pkg
release_only: true # Quoted so the `matrix.release_only != 'true'` guard compares
# string-to-string. A YAML boolean here coerces to a number in
# GitHub expressions (true -> 1, 'true' -> NaN), making the guard
# always true and building this release-only leg on every PR.
release_only: "true"
runs_on: macos-14 runs_on: macos-14
artifact_name: build-macos-arm64-pkg artifact_name: build-macos-arm64-pkg
artifact_paths: | artifact_paths: |