Skip to content

Commit

Permalink
fix(release): skip upstream rc builds (#344)
Browse files Browse the repository at this point in the history
  • Loading branch information
parkedwards authored Jun 4, 2024
1 parent aaa67b1 commit dddaebe
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/helm-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,9 @@ 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-]*.*.*' | tail -n1 | sed 's/.*\///' \
https://github.com/PrefectHQ/prefect.git '[!prefect-]*.*.[!rc]' | tail -n1 | sed 's/.*\///' \
)" >> $GITHUB_OUTPUT
if [[ $PREFECT_VERSION == 3.0rc* ]]; then
echo "Skipping chart releases for the 3.0rc builds"
exit 1
fi
- name: Copy Artifact Hub metadata
run: |
mkdir -p /tmp/chart
Expand Down

0 comments on commit dddaebe

Please sign in to comment.