Skip to content

Commit

Permalink
Workaround for failed commit_version_bump : openHAB.xcodeproj/project…
Browse files Browse the repository at this point in the history
….xcworkspace/xcshareddata/swiftpm/Package.resolved is not cleaned by clean_build_artifacts.

Signed-off-by: Tim Bert <[email protected]>
  • Loading branch information
timbms committed Oct 30, 2024
1 parent 4266d24 commit 2c26026
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -176,18 +176,19 @@ 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

# commit to git the changes from bumping version number
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 <[email protected]>"'
Expand Down

0 comments on commit 2c26026

Please sign in to comment.