Skip to content

Commit

Permalink
Fix echo $t title
Browse files Browse the repository at this point in the history
  • Loading branch information
klaases committed Dec 21, 2021
1 parent ec4818f commit dea9e55
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/update-k8s-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
id: bumpk8s
run: |
t=$(make update-kubernetes-version)
t=$(head -n 1 t)
t=$(echo $t | head -n 1)
echo "::set-output name=title::$t"
c=$(git status --porcelain)
c="${c//$'\n'/'%0A'}"
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -978,7 +978,7 @@ update-golang-version:

.PHONY: update-kubernetes-version
update-kubernetes-version:
(cd hack/update/kubernetes_version && \
@(cd hack/update/kubernetes_version && \
go run update_kubernetes_version.go)

.PHONY: update-golint-version
Expand Down

0 comments on commit dea9e55

Please sign in to comment.