Add release artifactbundle workflow#177
Open
hiryanbautista wants to merge 1 commit into
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds release automation for publishing
SwiftPackageListBinaryas a SwiftPM binary artifact bundle.This allows projects to add
SwiftPackageListthrough Swift Package Manager while still referencing theswift-package-listexecutable from a custom build phase, without requiring the tool to be installed separately on every developer or CI machine.References #171.
Changes
SwiftPackageListBinary.artifactbundle.zipduring release publishingPackage.swiftwith aSwiftPackageListBinarybinary targetMotivation
The build tool plugin is useful for common setups, but some projects need to invoke
swift-package-listfrom a custom Run Script phase, especially when combining generated acknowledgements with an existing manually maintainedSettings.bundle.Providing a binary target lets those projects depend on the executable through SPM instead of relying on a machine-level installation.