-
Notifications
You must be signed in to change notification settings - Fork 69
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
Use the go version specified in the Makefile tools module #364
Use the go version specified in the Makefile tools module #364
Conversation
Signed-off-by: Tim Ramlot <42113979+inteon@users.noreply.github.com>
|
||
- id: release | ||
run: make release | ||
|
||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: trust-manager-${{ env.VERSION }}.tgz | ||
name: ${{ steps.release.outputs.RELEASE_HELM_CHART_NAME }}-${{ steps.release.outputs.RELEASE_HELM_CHART_VERSION }}.tgz |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change is also based on https://github.com/cert-manager/approver-policy/blob/main/.github/workflows/release.yaml.
/lgtm |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/lgtm
/approve
Waving through, looks good! Can review any followups if needed!
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: SgtCoDFish The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
We noticed that the go version used to release trust-manager v0.10.0 did not match the go version specified in the
tools
Makefile module.This is due to an oversight in the release.yaml GH action definition. This PR updates those yaml files to match the logic we are using in other projects (eg. approver-policy, see https://github.com/cert-manager/approver-policy/blob/main/.github/workflows/release.yaml).