mirror of
https://github.com/lwouis/alt-tab-macos.git
synced 2026-05-24 11:20:36 +00:00
20 lines
515 B
Bash
Executable File
20 lines
515 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
#if [ $IS_RELEASE ]; then
|
|
scripts/determine_version.sh
|
|
scripts/replace_environment_variables_in_app.sh
|
|
#fi
|
|
|
|
scripts/codesign/setup_ci_master.sh
|
|
xcodebuild -workspace alt-tab-macos.xcworkspace -scheme Release -derivedDataPath DerivedData
|
|
file "$BUILD_DIR/$XCODE_BUILD_PATH/$APP_NAME.app/Contents/MacOS/$APP_NAME"
|
|
|
|
#if [ $IS_RELEASE ]; then
|
|
# scripts/package_and_notarize_release.sh
|
|
# scripts/upload_symbols_to_appcenter.sh
|
|
# scripts/update_appcast.sh
|
|
# npx semantic-release
|
|
#fi
|