Skip to content

Commit

Permalink
Use frinx- tag for release
Browse files Browse the repository at this point in the history
  • Loading branch information
Jozef Volak committed Jun 24, 2024
1 parent 82f388a commit 544540e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 544540e

Please sign in to comment.