From 2c26026f448c1ad5583488a076272ebe4f525fc9 Mon Sep 17 00:00:00 2001 From: Tim Bert <5411131+timbms@users.noreply.github.com> Date: Wed, 30 Oct 2024 15:16:59 +0100 Subject: [PATCH] Workaround for failed commit_version_bump : openHAB.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved is not cleaned by clean_build_artifacts. Signed-off-by: Tim Bert <5411131+timbms@users.noreply.github.com> --- fastlane/Fastfile | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 68b5ae1c..5790a54f 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -176,10 +176,10 @@ platform :ios do groups: ['Beta Testers'] ) - upload_symbols_to_crashlytics( - gsp_path: "openHAB/GoogleService-Info.plist", - binary_path: './scripts/upload-symbols' - ) + upload_symbols_to_crashlytics( + gsp_path: "openHAB/GoogleService-Info.plist", + binary_path: './scripts/upload-symbols' + ) clean_build_artifacts @@ -187,7 +187,8 @@ platform :ios do commit_version_bump( message: "committed version bump: #{version} (#{build_number})", xcodeproj: 'openHAB.xcodeproj', - include: %w[CHANGELOG.md] + include: %w[CHANGELOG.md], + force: true ) if is_ci? sh 'git commit --amend --no-edit --signoff --author="openhab-bot "'