* chore(security): add gitleaks config allowlisting vendored/test fixtures
Suppress false positives so `gitleaks detect` is clean:
- third_party/* (cargokit ships a public binary-verification key)
- workspace_management_unit_test.dart (obfuscated "token" fixture)
- gatewayruntime/runtime_test.go (hardcoded "device-1" test key pair)
Real leaked secrets are purged from history, not allowlisted.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
* chore(security): remove historical secret fixtures
* chore(release): bump build metadata for 1.1.5+2
* chore(release): bump version to 1.1.5+2
* chore(release): bump build metadata for 1.1.5+2
---------
Co-authored-by: Haitao Pan <manbuzhe2009@qq.com>
* ci(release): add TestFlight release matrix
* chore(release): bump version to 1.1.5+2
* chore(release): bump build metadata for 1.1.5+2
* ci(release): add TestFlight release matrix
---------
Co-authored-by: Haitao Pan <manbuzhe2009@qq.com>
* ci(release): load Vault secrets per-platform in build matrix
The build matrix loaded all 17 signing secrets in one shared block for
every platform. vault-action's ignoreNotFound only suppresses path-level
404s, not field-level "No match data" errors, so a single missing field
(e.g. APPLE_MAC_PROVISION_PROFILE_BASE64) failed every leg — including
linux/windows/android that need no Apple secrets.
Split the load into per-OS-family steps gated by matrix.platform:
- Apple (macos/ios): Apple cert + provisioning + keychain + export method
- Windows: WINDOWS_PFX_* + codesign subject
- Android: ANDROID_KEYSTORE_* + key alias/password
Linux requests nothing.
Also drop APP_STORE_CONNECT_* from the build matrix: only
testflight_upload.sh consumes them and it runs in the release job, which
loads them itself. The build matrix no longer depends on them.
Add shell: bash to the Export step (its `{ … } >> $GITHUB_ENV` brace
syntax is bash-only and would fail under the default pwsh on windows).
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
---------
Co-authored-by: Haitao Pan <haitao.pan@xworkmate.ai>
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
Co-authored-by: Haitao Pan <manbuzhe2009@qq.com>
91 lines
2.5 KiB
Bash
Executable File
91 lines
2.5 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
repo_root="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)"
|
|
cd "$repo_root"
|
|
eval "$(python3 "$repo_root/scripts/ci/build_version.py" --format shell)"
|
|
platform="${1:?platform is required}"
|
|
arch="${2:?arch is required}"
|
|
package_kind="${3:-}"
|
|
should_release="${4:-false}"
|
|
|
|
flutter pub get
|
|
|
|
case "$platform" in
|
|
linux)
|
|
bash ./scripts/package-linux.sh
|
|
;;
|
|
macos)
|
|
case "$package_kind" in
|
|
dmg)
|
|
bash ./scripts/package-flutter-mac-app.sh
|
|
mkdir -p dist/macos
|
|
find dist -maxdepth 1 -name '*.dmg' -exec mv {} dist/macos/ \;
|
|
;;
|
|
app-store-pkg)
|
|
bash ./scripts/package-macos-app-store-pkg.sh
|
|
mkdir -p dist/macos-app-store
|
|
find dist -maxdepth 1 -name '*.pkg' -exec mv {} dist/macos-app-store/ \;
|
|
;;
|
|
*)
|
|
echo "Unsupported macOS package kind: $package_kind" >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
;;
|
|
windows)
|
|
flutter build windows --release \
|
|
--build-name="$PLATFORM_RELEASE_VERSION" \
|
|
--build-number="$BUILD_NUMBER"
|
|
pwsh -File ./scripts/package-windows-msi.ps1 -Arch "$arch"
|
|
;;
|
|
ios)
|
|
ios_signing_secrets=(
|
|
APPLE_CERT_P12_BASE64
|
|
APPLE_CERT_PASSWORD
|
|
APPLE_PROVISION_PROFILE_BASE64
|
|
APPLE_KEYCHAIN_PASSWORD
|
|
)
|
|
ios_missing=()
|
|
for var_name in "${ios_signing_secrets[@]}"; do
|
|
if [[ -z "${!var_name:-}" ]]; then
|
|
ios_missing+=("$var_name")
|
|
fi
|
|
done
|
|
|
|
if [[ "${#ios_missing[@]}" -gt 0 ]]; then
|
|
echo "Apple signing secrets unavailable (missing: ${ios_missing[*]}); building unsigned iOS app bundle."
|
|
build_unsigned_ios_bundle=1
|
|
elif [[ "$should_release" == "true" ]]; then
|
|
build_unsigned_ios_bundle=0
|
|
else
|
|
echo "Release not requested; building unsigned iOS app bundle."
|
|
build_unsigned_ios_bundle=1
|
|
fi
|
|
|
|
if [[ "$build_unsigned_ios_bundle" -eq 1 ]]; then
|
|
flutter build ios --release --no-codesign \
|
|
--build-name="$PLATFORM_RELEASE_VERSION" \
|
|
--build-number="$BUILD_NUMBER" \
|
|
--dart-define="XWORKMATE_DISPLAY_VERSION=$DISPLAY_VERSION" \
|
|
--dart-define="XWORKMATE_BUILD_NUMBER=$BUILD_NUMBER"
|
|
mkdir -p dist/ios
|
|
(
|
|
cd build/ios/iphoneos
|
|
rm -f XWorkmate.app.zip
|
|
zip -qry XWorkmate.app.zip Runner.app
|
|
mv XWorkmate.app.zip ../../../dist/ios/
|
|
)
|
|
else
|
|
bash ./scripts/package-ios-ipa.sh
|
|
fi
|
|
;;
|
|
android)
|
|
bash ./scripts/package-android-apk.sh
|
|
;;
|
|
*)
|
|
echo "Unsupported platform: $platform" >&2
|
|
exit 1
|
|
;;
|
|
esac
|