mirror of
https://github.com/yattee/yattee.git
synced 2026-03-19 14:56:56 +00:00
Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
942f7da090 | ||
|
|
35e38a03ba | ||
|
|
f973f3cd91 | ||
|
|
e5cc5c6d13 | ||
|
|
71f881a580 | ||
|
|
cd096e6235 | ||
|
|
895aca267a | ||
|
|
16609aa649 |
26
.github/workflows/release.yml
vendored
26
.github/workflows/release.yml
vendored
@@ -47,7 +47,7 @@ env:
|
||||
jobs:
|
||||
determine_build_number:
|
||||
name: Determine build number
|
||||
runs-on: macos-latest
|
||||
runs-on: macos-26
|
||||
outputs:
|
||||
build_number: ${{ steps.calc.outputs.build_number }}
|
||||
version_number: ${{ steps.version.outputs.version_number }}
|
||||
@@ -77,7 +77,7 @@ jobs:
|
||||
if: ${{ inputs.build_ios }}
|
||||
needs: [determine_build_number]
|
||||
name: Release iOS to TestFlight
|
||||
runs-on: macos-latest
|
||||
runs-on: macos-26
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: ruby/setup-ruby@v1
|
||||
@@ -85,9 +85,6 @@ jobs:
|
||||
ruby-version: '3.4'
|
||||
bundler-cache: true
|
||||
cache-version: 1
|
||||
- name: Set signing to manual for CI
|
||||
run: |
|
||||
sed -i '' 's/CODE_SIGN_STYLE = Automatic/CODE_SIGN_STYLE = Manual/' Yattee.xcodeproj/project.pbxproj
|
||||
- name: Set build number
|
||||
run: |
|
||||
sed -i '' 's/CURRENT_PROJECT_VERSION = [0-9]*/CURRENT_PROJECT_VERSION = ${{ needs.determine_build_number.outputs.build_number }}/' Yattee.xcodeproj/project.pbxproj
|
||||
@@ -106,7 +103,7 @@ jobs:
|
||||
if: ${{ inputs.build_tvos }}
|
||||
needs: [determine_build_number]
|
||||
name: Release tvOS to TestFlight
|
||||
runs-on: macos-latest
|
||||
runs-on: macos-26
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: ruby/setup-ruby@v1
|
||||
@@ -114,9 +111,6 @@ jobs:
|
||||
ruby-version: '3.4'
|
||||
bundler-cache: true
|
||||
cache-version: 1
|
||||
- name: Set signing to manual for CI
|
||||
run: |
|
||||
sed -i '' 's/CODE_SIGN_STYLE = Automatic/CODE_SIGN_STYLE = Manual/' Yattee.xcodeproj/project.pbxproj
|
||||
- name: Set build number
|
||||
run: |
|
||||
sed -i '' 's/CURRENT_PROJECT_VERSION = [0-9]*/CURRENT_PROJECT_VERSION = ${{ needs.determine_build_number.outputs.build_number }}/' Yattee.xcodeproj/project.pbxproj
|
||||
@@ -135,7 +129,7 @@ jobs:
|
||||
if: ${{ inputs.build_mac_beta }}
|
||||
needs: [determine_build_number]
|
||||
name: Release macOS to TestFlight
|
||||
runs-on: macos-latest
|
||||
runs-on: macos-26
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: ruby/setup-ruby@v1
|
||||
@@ -143,9 +137,6 @@ jobs:
|
||||
ruby-version: '3.4'
|
||||
bundler-cache: true
|
||||
cache-version: 1
|
||||
- name: Set signing to manual for CI
|
||||
run: |
|
||||
sed -i '' 's/CODE_SIGN_STYLE = Automatic/CODE_SIGN_STYLE = Manual/' Yattee.xcodeproj/project.pbxproj
|
||||
- name: Set build number
|
||||
run: |
|
||||
sed -i '' 's/CURRENT_PROJECT_VERSION = [0-9]*/CURRENT_PROJECT_VERSION = ${{ needs.determine_build_number.outputs.build_number }}/' Yattee.xcodeproj/project.pbxproj
|
||||
@@ -164,7 +155,7 @@ jobs:
|
||||
if: ${{ inputs.build_mac_notarized }}
|
||||
needs: [determine_build_number]
|
||||
name: Build and notarize macOS app
|
||||
runs-on: macos-latest
|
||||
runs-on: macos-26
|
||||
env:
|
||||
BUILD_NUMBER: ${{ needs.determine_build_number.outputs.build_number }}
|
||||
VERSION_NUMBER: ${{ needs.determine_build_number.outputs.version_number }}
|
||||
@@ -175,9 +166,6 @@ jobs:
|
||||
ruby-version: '3.4'
|
||||
bundler-cache: true
|
||||
cache-version: 1
|
||||
- name: Set signing to manual with Developer ID
|
||||
run: |
|
||||
sed -i '' 's/CODE_SIGN_STYLE = Automatic/CODE_SIGN_STYLE = Manual/' Yattee.xcodeproj/project.pbxproj
|
||||
- name: Set build number
|
||||
run: |
|
||||
sed -i '' 's/CURRENT_PROJECT_VERSION = [0-9]*/CURRENT_PROJECT_VERSION = ${{ env.BUILD_NUMBER }}/' Yattee.xcodeproj/project.pbxproj
|
||||
@@ -198,7 +186,7 @@ jobs:
|
||||
if-no-files-found: error
|
||||
|
||||
release:
|
||||
if: ${{ inputs.create_release && !cancelled() }}
|
||||
if: ${{ inputs.create_release && !cancelled() && !failure() }}
|
||||
needs: [determine_build_number, ios_beta, tvos_beta, mac_beta, mac_notarized]
|
||||
name: Create GitHub release
|
||||
runs-on: ubuntu-latest
|
||||
@@ -217,8 +205,10 @@ jobs:
|
||||
git config --local user.name "github-actions[bot]"
|
||||
sed -i 's/CURRENT_PROJECT_VERSION = [0-9]*/CURRENT_PROJECT_VERSION = ${{ env.BUILD_NUMBER }}/' Yattee.xcodeproj/project.pbxproj
|
||||
git add Yattee.xcodeproj/project.pbxproj
|
||||
git diff --cached --quiet && echo "Build number already up to date" || {
|
||||
git commit -m "Bump build number to ${{ env.BUILD_NUMBER }}"
|
||||
git push origin ${{ github.ref_name }}
|
||||
}
|
||||
- uses: actions/download-artifact@v4
|
||||
with:
|
||||
path: artifacts
|
||||
|
||||
@@ -459,7 +459,7 @@
|
||||
AUTOMATION_APPLE_EVENTS = NO;
|
||||
CODE_SIGN_ENTITLEMENTS = Yattee/Yattee.entitlements;
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
CURRENT_PROJECT_VERSION = 252;
|
||||
CURRENT_PROJECT_VERSION = 253;
|
||||
DEAD_CODE_STRIPPING = YES;
|
||||
DEVELOPMENT_TEAM = 78Z5H3M6RJ;
|
||||
ENABLE_APP_SANDBOX = YES;
|
||||
@@ -540,7 +540,7 @@
|
||||
AUTOMATION_APPLE_EVENTS = NO;
|
||||
CODE_SIGN_ENTITLEMENTS = Yattee/Yattee.entitlements;
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
CURRENT_PROJECT_VERSION = 252;
|
||||
CURRENT_PROJECT_VERSION = 253;
|
||||
DEAD_CODE_STRIPPING = YES;
|
||||
DEVELOPMENT_TEAM = 78Z5H3M6RJ;
|
||||
ENABLE_APP_SANDBOX = YES;
|
||||
@@ -616,7 +616,7 @@
|
||||
buildSettings = {
|
||||
CODE_SIGN_ENTITLEMENTS = YatteeShareExtension/YatteeShareExtension.entitlements;
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
CURRENT_PROJECT_VERSION = 252;
|
||||
CURRENT_PROJECT_VERSION = 253;
|
||||
DEVELOPMENT_TEAM = 78Z5H3M6RJ;
|
||||
GENERATE_INFOPLIST_FILE = YES;
|
||||
INFOPLIST_FILE = YatteeShareExtension/Info.plist;
|
||||
@@ -647,7 +647,7 @@
|
||||
buildSettings = {
|
||||
CODE_SIGN_ENTITLEMENTS = YatteeShareExtension/YatteeShareExtension.entitlements;
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
CURRENT_PROJECT_VERSION = 252;
|
||||
CURRENT_PROJECT_VERSION = 253;
|
||||
DEVELOPMENT_TEAM = 78Z5H3M6RJ;
|
||||
GENERATE_INFOPLIST_FILE = YES;
|
||||
INFOPLIST_FILE = YatteeShareExtension/Info.plist;
|
||||
@@ -679,7 +679,7 @@
|
||||
buildSettings = {
|
||||
BUNDLE_LOADER = "$(TEST_HOST)";
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
CURRENT_PROJECT_VERSION = 252;
|
||||
CURRENT_PROJECT_VERSION = 253;
|
||||
DEAD_CODE_STRIPPING = YES;
|
||||
DEVELOPMENT_TEAM = 78Z5H3M6RJ;
|
||||
GENERATE_INFOPLIST_FILE = YES;
|
||||
@@ -708,7 +708,7 @@
|
||||
buildSettings = {
|
||||
BUNDLE_LOADER = "$(TEST_HOST)";
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
CURRENT_PROJECT_VERSION = 252;
|
||||
CURRENT_PROJECT_VERSION = 253;
|
||||
DEAD_CODE_STRIPPING = YES;
|
||||
DEVELOPMENT_TEAM = 78Z5H3M6RJ;
|
||||
GENERATE_INFOPLIST_FILE = YES;
|
||||
|
||||
@@ -111,6 +111,24 @@ platform :ios do
|
||||
api_key: api_key
|
||||
)
|
||||
|
||||
update_code_signing_settings(
|
||||
use_automatic_signing: false,
|
||||
path: XCODEPROJ,
|
||||
team_id: TEAM_ID,
|
||||
code_sign_identity: "Apple Distribution",
|
||||
profile_name: "match AppStore #{DEVELOPER_APP_IDENTIFIER}",
|
||||
targets: [SCHEME]
|
||||
)
|
||||
|
||||
update_code_signing_settings(
|
||||
use_automatic_signing: false,
|
||||
path: XCODEPROJ,
|
||||
team_id: TEAM_ID,
|
||||
code_sign_identity: "Apple Distribution",
|
||||
profile_name: "match AppStore #{DEVELOPER_APP_IDENTIFIER}.ShareExtension",
|
||||
targets: ["YatteeShareExtension"]
|
||||
)
|
||||
|
||||
build_app(
|
||||
scheme: SCHEME,
|
||||
destination: "generic/platform=iOS",
|
||||
@@ -164,6 +182,15 @@ platform :tvos do
|
||||
api_key: api_key
|
||||
)
|
||||
|
||||
update_code_signing_settings(
|
||||
use_automatic_signing: false,
|
||||
path: XCODEPROJ,
|
||||
team_id: TEAM_ID,
|
||||
code_sign_identity: "Apple Distribution",
|
||||
profile_name: "match AppStore #{DEVELOPER_APP_IDENTIFIER} tvos",
|
||||
targets: [SCHEME]
|
||||
)
|
||||
|
||||
build_app(
|
||||
scheme: SCHEME,
|
||||
destination: "generic/platform=tvOS",
|
||||
@@ -218,6 +245,15 @@ platform :mac do
|
||||
api_key: api_key
|
||||
)
|
||||
|
||||
update_code_signing_settings(
|
||||
use_automatic_signing: false,
|
||||
path: XCODEPROJ,
|
||||
team_id: TEAM_ID,
|
||||
code_sign_identity: "Apple Distribution",
|
||||
profile_name: "match AppStore #{DEVELOPER_APP_IDENTIFIER} macos",
|
||||
targets: [SCHEME]
|
||||
)
|
||||
|
||||
build_mac_app(
|
||||
scheme: SCHEME,
|
||||
output_directory: "fastlane/builds/#{version}-#{build}/macOS",
|
||||
@@ -268,6 +304,15 @@ platform :mac do
|
||||
api_key: api_key
|
||||
)
|
||||
|
||||
update_code_signing_settings(
|
||||
use_automatic_signing: false,
|
||||
path: XCODEPROJ,
|
||||
team_id: TEAM_ID,
|
||||
code_sign_identity: "Developer ID Application",
|
||||
profile_name: "match Direct #{DEVELOPER_APP_IDENTIFIER} macos",
|
||||
targets: [SCHEME]
|
||||
)
|
||||
|
||||
build_mac_app(
|
||||
scheme: SCHEME,
|
||||
output_directory: "fastlane/builds/#{version}-#{build}/macOS",
|
||||
|
||||
Reference in New Issue
Block a user