Merge pull request #1186 from testuser7/docker-tag

Fix docker tag creation
pull/1187/head
Fredrik Öhrström 2024-02-22 18:45:13 +01:00 zatwierdzone przez GitHub
commit 58dd9d32ff
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -12,7 +12,7 @@ env:
DOCKERHUB_IMAGE: ${{ github.repository }}
IMAGE_TAG: |
${{ github.ref_type == 'tag' && (contains(github.ref_name, '-RC') &&
join('candidate-', github.ref_name) || join('release-', github.ref_name)) || 'latest' }}
format('{0}-{1}', 'candidate', github.ref_name) || format('{0}-{1}', 'release', github.ref_name)) || 'latest' }}
jobs:
build: