Skip to content
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

Create the automated release process using googleapis/release-please #262

Open
wants to merge 2 commits into
base: planning-1.0-release
Choose a base branch
from

Conversation

nijanthanvijayakumar
Copy link
Contributor

@nijanthanvijayakumar nijanthanvijayakumar commented Sep 16, 2024

Proposed changes

  • release-please-config.json: Add configuration file with release type set to python, and the changelog path to CHANGELOG.md.
  • .release-please-manifest.json: Add manifest file with quinn version set to 0.10.3.
  • .github/workflows/release-please.yml: Add workflow file for release-please action
  • CONTRIBUTING.md: Add a section to elaborate the "Release and Pre-Release Processes".

Types of changes

What types of changes does your code introduce to quinn?
Put an x in the boxes that apply

  • Bugfix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to not work as expected)
  • Documentation Update (if none of the other choices apply)

Further comments

* **release-please-config.json**: Add configuration file with release type set to `python`, changelog path to `CHANGELOG.md`, and packages to include `quinn`.
* **.release-please-manifest.json**: Add manifest file with `quinn` version set to `1.0.0`.
* **.github/workflows/release-please.yml**: Add workflow file for release-please action
* **CONTRIBUTING.md**: Add a section for the "Release Process"
@dinjazelena
Copy link
Contributor

dinjazelena commented Sep 16, 2024

@nijanthanvijayakumar @SemyonSinchenko . It should be on on_push. So basically what happens is when u want to introduce the change to your main branch, most likely from PR or just a single commit. Every time there is commit(or PR), release-please-action is triggered and it searches for pattern in your commit message(PR title) with prefix of fix: or feat: or fix! or refactor! or ci: and many more. Based on your PR title(commit message) release please would create a PR which is using to accumulate and follow all of your changes.

So lets say u have window for releasing, and by that time u made 3 bug fixes added 2 new features, release please keeps all of those changes in your automatic pull request. Once u are ready to merge that automatic pull request created by release please, it would create a Github Release, bump versions in __init__.py, pyproject.toml , update CHANGELOG.md and ideally release your artifact to PyPi.

What release please lacks is using both prelease and release, it promotes trunk based, but it somehow does not allow it to use both of these. So u can automatically create for example release candidates, and then just have a manual workflow to release production version or vice versa.

And ideally u tested this on separate github repo to make sure its all good.

Also release-please-manifest.json, is what is used to track versioning under the hood, so current latest version should be there.

@SemyonSinchenko
Copy link
Collaborator

@nijanthanvijayakumar @dinjazelena Thanks for the explanation! Do I understand right, that this workflow make a realease to PyPI? If so, which secrets should be provided?

@nijanthanvijayakumar
Copy link
Contributor Author

nijanthanvijayakumar commented Sep 16, 2024

@SemyonSinchenko - this workflow creates a GitHub release as in the screenshot below and I don't think it creates a PyPi release (I might take your help in double-confirming this @dinjazelena?). The only reference to Python I used in this workflow is here.

While creating it, I didn't see any references to PyPi and it worked on the test repo I shared earlier without involving the creation of any secrets.
image

@SemyonSinchenko
Copy link
Collaborator

Can we somehow add a step to the release pipeline that publish in PyPI release or pre-release versions?

@nijanthanvijayakumar
Copy link
Contributor Author

Can we somehow add a step to the release pipeline that publish in PyPI release or pre-release versions?

Sure can look into it, but did you want that to be done in this PR?

@dinjazelena
Copy link
Contributor

Yeah, so this only creates Github Release, but logically, u would just have additional step in your github action workflow with smth like this

if: ${{ steps.release.outputs.release_created }}
run: |
   poetry publish ...

Here is an example for nmp.

Question is only do you want to create automatic release for pre-releases or for production releases because unfortunately it cannot support both.

@SemyonSinchenko
Copy link
Collaborator

Question is only do you want to create automatic release for pre-releases or for production releases

I would have better automated prod-release

@nijanthanvijayakumar
Copy link
Contributor Author

nijanthanvijayakumar commented Sep 17, 2024

Question is only do you want to create automatic release for pre-releases or for production releases

I would have better automated prod-release

@SemyonSinchenko - sure. I came across this article, and according to this, one doesn't need secrets to publish to the PyPI repository due to the "trusted publishing" feature. However, as indicated in the image below from the Set up PyPI publishing using GitHub section of that article, Quinn's project author or maintainer must add GitHub Actions as a trusted publisher for that project. Are you or @MrPowers able to do that while I whip up the code for publishing the package to PyPI?

Steps for adding a trusted publisher is documented in this PyPI docs here - https://docs.pypi.org/trusted-publishers/adding-a-publisher/

image

@nijanthanvijayakumar
Copy link
Contributor Author

Question is only do you want to create automatic release for pre-releases or for production releases

I would have better automated prod-release

@SemyonSinchenko - sure. I came across this article, and according to this, one doesn't need secrets to publish to the PyPI repository due to the "trusted publishing" feature. However, as indicated in the image below from the Set up PyPI publishing using GitHub section of that article, Quinn's project author or maintainer must add GitHub Actions as a trusted publisher for that project. Are you or @MrPowers able to do that while I whip up the code for publishing the package to PyPI?

Steps for adding a trusted publisher is documented in this PyPI docs here - https://docs.pypi.org/trusted-publishers/adding-a-publisher/

image

Hello @SemyonSinchenko ! Any suggestions on the next steps?

@SemyonSinchenko
Copy link
Collaborator

Sorry, I missed the comment. I will ask @MrPowers

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants