-
Notifications
You must be signed in to change notification settings - Fork 3
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
Release workflow #14
Release workflow #14
Conversation
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.
We are using goreleaser for the rest of the Go projects so it would be nice to have that, but given this is blocking an opened PR in Minder it's not that important.
.github/workflows/release.yaml
Outdated
@@ -0,0 +1,45 @@ | |||
# Copyright 2023 The Protobom Authors |
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.
Should we update the license header
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.
.github/workflows/release.yaml
Outdated
with: | ||
go-version: '1.22' | ||
check-latest: true | ||
cache: true |
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.
Let's disable caching, we started doing that for minder and other projects because of some recent exploit leveraging that
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.
OK, done!
This adds a release workflow to be executed on a v tag push Signed-off-by: Adolfo García Veytia (Puerco) <[email protected]>
This PR adds a release workflow to be executed on a
v*
tag pushSample release: https://github.com/puerco/trusty-sdk-go/releases/tag/v0.2.0-rc.2
Signed-off-by: Adolfo García Veytia (Puerco) [email protected]