Skip to content

Commit

Permalink
Merge pull request kubernetes-sigs#73 from marquiz/fixes/release-0.2
Browse files Browse the repository at this point in the history
scripts/github/update-gh-pages: tolerate non-annotated tags
  • Loading branch information
k8s-ci-robot authored Jun 2, 2021
2 parents 27e7024 + 2bf23d7 commit c5c6060
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/github/update-gh-pages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ site_subdir=${site_subdir:-master}

# Check if this ref is for a released version
if [ "$site_subdir" != "master" ]; then
_base_tag=`git describe --abbrev=0 || :`
_base_tag=`git describe --tags --abbrev=0 || :`
case "$_base_tag" in
$site_subdir*)
;;
Expand Down

0 comments on commit c5c6060

Please sign in to comment.