We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a501482 commit 21ed463Copy full SHA for 21ed463
.github/workflows/build.yaml
@@ -27,8 +27,9 @@ jobs:
27
id: changetag
28
shell: bash
29
run: |
30
- ./build/self-signer-utility.sh
31
- if [[ $? -eq 0 ]]; then
+ output=$(./build/self-signer-utility.sh)
+ echo $output | grep "You have not changed the tag of selfSigner utility"
32
+ if [[ $? -ne 0 ]]; then
33
echo ::set-output name=tagChange::true
34
fi
35
build/self-signer-utility.sh
@@ -8,6 +8,4 @@ lastCommit=$(git rev-parse @~)
8
git diff "${lastCommit}" "${currentCommit}" cockroachdb/values.yaml | grep -w "$tag" | grep +
9
if [[ $? -ne 0 ]]; then
10
echo "You have not changed the tag of selfSigner utility"
11
- exit 1
12
13
-exit 0
0 commit comments