Skip to content

Commit

Permalink
Only include 1.x tags during Helm core version pin
Browse files Browse the repository at this point in the history
  • Loading branch information
zanieb committed Sep 22, 2022
1 parent 03bf413 commit 5fe03cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/helm-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
echo ::set-output name=VERSION::$(echo $GITHUB_REF | cut -d / -f 3)
echo ::set-output name=CORE_VERSION::$(\
git ls-remote --tags --refs --sort="v:refname" \
https://github.com/PrefectHQ/prefect.git | tail -n1 | sed 's/.*\///' \
https://github.com/PrefectHQ/prefect.git | grep "tags/1." | tail -n1 | sed 's/.*\///' \
)
echo ::set-output name=UI_VERSION::$(\
git ls-remote --tags --refs --sort="v:refname" \
Expand Down

2 comments on commit 5fe03cc

@ddelange
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hi @madkinsz 👋

do I understand correctly there are no helm charts for 2.x published yet?

@ddelange
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ah nevermind, just saw they moved to a new repo in https://github.com/PrefectHQ/prefect-helm

Please sign in to comment.