Skip to content

Commit

Permalink
fix: only search for prefect tag versions that are semver (#286)
Browse files Browse the repository at this point in the history
  • Loading branch information
parkedwards authored Jan 12, 2024
1 parent e010b26 commit 43c7d9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/helm-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
echo "RELEASE_VERSION=$(echo $GITHUB_REF | cut -d / -f 3)" >> $GITHUB_OUTPUT
echo "PREFECT_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 '*.*.*' | tail -n1 | sed 's/.*\///' \
)" >> $GITHUB_OUTPUT
- name: Copy Artifact Hub metadata
Expand Down

0 comments on commit 43c7d9f

Please sign in to comment.