How to release from a branch? #222
-
I have to create a patch release from a branch of django-tailwind-cli. But it seems as I am unable to release from a branch. If I build the wheel locally, everything is fine, but somehow if I do it with the release pipeline, PyPI is not happy. I don't see any issue in the GitHub action. Can someone help me with this issue? Here is the job, that failed. Cheers, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi Oliver! Your wheel's METADATA version is 2.4 and the maximum supported version listed in error message is 2.3:
That tag is using an older version of gh-action-pypi-publish, I suspect its an issue of the build tooling thats installed in the workflow being too new for the upload action. I bet if you changed these lines in release.yml:
to
It would work. |
Beta Was this translation helpful? Give feedback.
Hi Oliver!
Your wheel's METADATA version is 2.4 and the maximum supported version listed in error message is 2.3:
That tag is using an older version of gh-action-pypi-publish, I suspect its an issue of the build tooling thats installed in the workflow being too new for the upload a…