From cc2614673eba579b6b35b2183cac40c2afdf1b59 Mon Sep 17 00:00:00 2001 From: XargonWan Date: Fri, 29 Sep 2023 10:07:54 +0200 Subject: [PATCH] Testing feat pipeline --- .github/workflows/cooker-selfhosted.yml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/.github/workflows/cooker-selfhosted.yml b/.github/workflows/cooker-selfhosted.yml index 55e92b00..0ba61c31 100644 --- a/.github/workflows/cooker-selfhosted.yml +++ b/.github/workflows/cooker-selfhosted.yml @@ -106,18 +106,10 @@ jobs: id: branch_name run: echo "BRANCH_NAME=$(echo $GITHUB_REF | sed 's|refs/heads/||')" >> $GITHUB_ENV - - name: "Set TAG_NAME based on branch name (cooker only)" - run: | - if [[ $BRANCH_NAME == 'feat/'* ]]; then - echo "TAG_NAME=feature:${BRANCH_NAME/feat\//}" >> $GITHUB_ENV - else - echo "TAG_NAME=${BRANCH_NAME}" >> $GITHUB_ENV - fi - # if it's a feature branch it will not marked as "latest" cooker version - name: "Set makeLatest (cooker only)" run: | - if [[ "$TAG_NAME" == 'feature:'* ]]; then + if [[ "$BRANCH_NAME" == 'feat/'* ]]; then echo "MAKE_LATEST=false" >> $GITHUB_ENV else echo "MAKE_LATEST=true" >> $GITHUB_ENV