From 57e958357af1ca52e20d173e51b44baba5940316 Mon Sep 17 00:00:00 2001 From: Michael Balsillie Date: Sun, 21 Aug 2022 23:09:55 +1200 Subject: [PATCH] if then syntax --- .woodpecker/main.yml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.woodpecker/main.yml b/.woodpecker/main.yml index 5af5a2b..685d879 100644 --- a/.woodpecker/main.yml +++ b/.woodpecker/main.yml @@ -22,14 +22,12 @@ pipeline: image: code.balsillie.net/containers/debian:11-slim-bash pull: false commands: - - if [[ $TAG =~ ^v1\...\..rc.$ ]] \ - then \ - echo "Tag ${TAG} appears to be a release candidate, terminating build." && exit 1 \ - elif [[ $TAG =~ ^v1\...\..$ ]] \ - then \ - echo "Tag ${TAG} appears to be a release tag, proceeding." && exit 0 \ - else \ - echo "Unable to determine nature of tag, terminating build." && exit 1 \ + - if [[ $TAG =~ ^v1\...\..rc.$ ]]; then + echo "Tag ${TAG} appears to be a release candidate, terminating build." && exit 1 + elif [[ $TAG =~ ^v1\...\..$ ]]; then + echo "Tag ${TAG} appears to be a release tag, proceeding." && exit 0 + else + echo "Unable to determine nature of tag, terminating build." && exit 1 fi clone-source: image: docker:git