-
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
also publish major version tag #649
base: master
Are you sure you want to change the base?
Conversation
on: | ||
release: | ||
types: [published] | ||
jobs: | ||
# move the "latest" and major version tags to the latest release, e.g., v1, to enable |
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.
thank you for this PR, what did you mean by "to enable" in this comment ?
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.
I meant to document the purpose of this job: to update the "latest" and major version tags. This is so that consumers may choose between the latest version and the most recent reverse-compatible version (major version).
git push origin latest | ||
- uses: Actions-R-Us/actions-tagger@v2 | ||
with: | ||
publish_latest_tag: 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.
will this delete the old latest and replace it without error ?
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.
That's correct.
resolves #648