Whenever I bump the tag for a Swift Package, none of its consumers can use it. Here is a link to my package.
Do I have to add a new Package.swift
file every time I bump the version? That seems tedius. If not can the error message be a little more clear?
Best regards,
Your 1.0.1
tag is attached to commit 8755501
, which does not contain a manifest (or any Swift files whatsoever) just as the error message describes.
My guess would be that you accidentally tagged the latest commit on the main
branch, when you instead intended to tag the latest commit on the develop
branch, which currently (at a66e51d
) contains all the files of what appears to be a valid Swift package.
2 Likes