Skip to content

Commit

Permalink
task: make sure legacy tags don't affect task
Browse files Browse the repository at this point in the history
It looks like certain buildpacks like python has legacy tags
like v95 (github.com/cloudfoundry/python-buildpack/releases/tag/v95)
that do not have an associated release. Filter them out.

Hopefully should fix [this job](https://buildpacks-private.ci.cf-app.com/teams/core-deps/pipelines/tas/jobs/publish-python-offline-buildpack-release/builds/63)
  • Loading branch information
arjun024 committed Jan 18, 2024
1 parent ceb0d18 commit 9799e32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/get-buildpack-github-release-notes/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ do
else
break
fi
done < <(git tag -l --sort=-version:refname "v*")
done < <(git tag -l --sort=-version:refname 'v[0-9]*.[0-9]*.[0-9]*')

release_body="$changelog$release_body_suffix"
popd
Expand Down

0 comments on commit 9799e32

Please sign in to comment.