-
Notifications
You must be signed in to change notification settings - Fork 60
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
chore: remove the rc
provision in the helm release workflow now that prefect 3 is GA
#382
Conversation
.github/workflows/helm-release.yaml
Outdated
@@ -25,7 +25,7 @@ jobs: | |||
echo "RELEASE_VERSION=$(date +'%Y.%-m.%-d%H%M%S')" >> $GITHUB_OUTPUT | |||
echo "PREFECT_VERSION=$(\ | |||
git ls-remote --tags --refs --sort="v:refname" \ | |||
https://github.com/PrefectHQ/prefect.git '[!prefect-]*.*.[!rc]' | tail -n1 | sed 's/.*\///' \ | |||
https://github.com/PrefectHQ/prefect.git '[!prefect-]*.*.*' | tail -n1 | sed 's/.*\///' \ |
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.
these will include rcs - wonder if we should do something like this?
➜ git ls-remote --tags --refs --sort="v:refname" \
https://github.com/PrefectHQ/prefect.git '[3]*.*.[!rc]'
c40d069de2d182af586eaf7909ee77beba17fd46 refs/tags/3.0.0
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 aren't cutting any more RCs, but I guess its fine to leave as is?
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 aren't cutting any more RCs, but I guess its fine to leave as is?
right, the [!rc]
just prevents them from being returned in the tag query, so we never run the risk of bundling an rc tag here
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 see, ill update!
Resolves PLA-237