From 052d37402e09a2f2dc9478e880b1f30d3430444d Mon Sep 17 00:00:00 2001 From: d-kuro Date: Tue, 22 Dec 2020 13:18:18 +0900 Subject: [PATCH] fix shell --- .github/workflows/renovate.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/renovate.yaml b/.github/workflows/renovate.yaml index 41bd274..7095cd5 100644 --- a/.github/workflows/renovate.yaml +++ b/.github/workflows/renovate.yaml @@ -18,7 +18,9 @@ jobs: exit 0 fi - if [ ! "$(go mod tidy && git diff -s --exit-code go.sum)" ]; then + go mod tidy -v + + if ! git diff -s --exit-code go.sum; then git remote set-url origin https://${GIT_USER}:${GH_ACTIONS_TOKEN}@github.com/d-kuro/kubectl-fuzzy.git git config --global user.name ${GIT_USER} git config --global user.email ${GIT_EMAIL}