Skip to content
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

Fix Chart Releaser action #350

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 5 additions & 17 deletions .github/actions/chart_releaser/cr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -248,28 +248,16 @@ install_chart_releaser() {

lookup_latest_tag() {
git fetch --tags >/dev/null 2>&1
latest_tag=$(git tag --sort=-creatordate | sed -n '2p')

if git symbolic-ref --short -q HEAD; then
if ! git describe --tags --abbrev=0 HEAD~ 2>/dev/null; then
git rev-list --max-parents=0 --first-parent HEAD
fi
if [ -z "$latest_tag" ]; then
# If no tags are found, return the initial commit hash
git rev-list --max-parents=0 --first-parent HEAD
else
# In a detached HEAD state, such as when the pipeline
# is triggered by a push on a tag commit, we need to look back
# by date
current_commit=$(git rev-parse HEAD)
for tag in $(git tag --sort=-creatordate); do
if [ $(git rev-parse "$tag") = "$current_commit" ]; then
continue
else
echo "$tag"
break
fi
done
echo "$latest_tag"
fi
}


filter_charts() {
while read -r chart; do
[[ ! -d "$chart" ]] && continue
Expand Down