From ab879771b3aed9b36c7964ce68ca363c99b59a83 Mon Sep 17 00:00:00 2001 From: Jozef Volak Date: Mon, 18 Mar 2024 10:09:07 +0100 Subject: [PATCH] Use frinx- tag for release --- .github/workflows/docker-publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index c8406630..0d149141 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -5,7 +5,7 @@ on: branches: - master # Publish 'master' as Docker 'latest' image. tags: - - v* # Publish `v1.2.3` tags as releases. + - vfrinx-* # Publish `v1.2.3` tags as releases. env: # TODO: Change variable to your image's name. @@ -46,7 +46,7 @@ jobs: VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,') # Strip "v" prefix from tag name - [[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//') + [[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^vfrinx-//') # Use Docker `latest` tag convention [ "$VERSION" == "master" ] && VERSION=latest