-
Notifications
You must be signed in to change notification settings - Fork 32
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
RFE: is it possible to start making github releases?🤔 #281
Comments
It was discussed and concluded that we'd start doing full GH releases when we left beta, but you make a good point: RSS feeds. And, it looks like we'll be in beta for a long time (dev cycle is periodic)... Auto-generating a changelog was also part of the same discussion, and it was concluded that we'd start that when we started using GH releases. We could have the CI create a GH release when a commit is tagged. I especially like GH's newer feature that auto-generates a list of changes since last release/tag. @jbms What do you think? @kloczek There are other ways to subscribe to pypi releases of a package. See this SO answewr. |
Sounds good to me. |
As for doing this in CI there are a multitude of options on the GH marketplace. In the past, I've used shogo82148/actions-upload-release-asset to upload generated assets (could be useful for providing another avenue of pypi release assets). I would be remiss if I didn't mention that this could be done with the |
As I'm working on Linux/Solaris distribution which currently have almost 4.7k packages only less than 1.1k of those packages are pyton modules. processing pypi RSS works only in case python modules however amongst those 4.7k packages +3k are have source tree in github [tkloczko@pers-jacek SPECS]$ grep "VCS:.*github.com" *spec | wc -l
3003 gitlab: [tkloczko@pers-jacek SPECS]$ grep "VCS:.*gitlab" *spec | wc -l
623 In other words use github releases nitrifications is more generic. |
using - name: Create a Github Release
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
run: gh release create ${{ github.ref_name }} --generate-notes
About generating a changelogI'm only exploring this as it would complete the community outreach that this issue concerns (& it was part of an older/related discussion). Generating a changelog is easy with the gh-changelog extension for the GH CLI. There are other tools, for instance ewjoachim/sphinx-github-changelog. But where we host the changelog needs to be decided.
|
Is it possible next time on release new version make the github release to have entry on https://github.com/jbms/sphinx-immaterial/releases? 🤔
I'm asking because only on make gh release is spread notification about new release to those who have set watch->releases.
My automation process those notification trying make preliminary automated upgrade of building packages which allow save some time on maintaining packaging procedures.
More about gh releases is possible to find on
https://docs.github.com/en/repositories/releasing-projects-on-github/managing-releases-in-a-repository
https://github.com/marketplace/actions/github-release
https://pgjones.dev/blog/trusted-plublishing-2023/
The text was updated successfully, but these errors were encountered: