-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: support swift package manager #4
Conversation
ef5917b
to
f8839e4
Compare
@@ -0,0 +1,3 @@ | |||
enum Version { | |||
static let current = "2.0.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we will need to add the comment to this line so the CI can update it automatically before releasing it.
E.g.
static let current = "2.0.0" // x-release-please-version
https://github.com/bucketeer-io/ios-client-sdk/blob/main/Bucketeer.podspec#L3
And then add the file path here.
https://github.com/bucketeer-io/ios-client-sdk/blob/main/.github/workflows/release.yml#L28
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, I didn't know the release flow.
Thank you, I fixed it.
Package.swift
Outdated
.library( | ||
name: "Bucketeer", | ||
targets: ["Bucketeer"] | ||
), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you fix the lint warning below?
Trailing Comma Violation: Collection literals should not have trailing commas (trailing_comma)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for your contribution!!! 🎉
#2