mirror of
https://github.com/umami-software/umami.git
synced 2025-12-06 01:18:00 +01:00
Always push latest for Docker.
This commit is contained in:
parent
a90b788138
commit
df3ca02e8b
1 changed files with 5 additions and 5 deletions
10
.github/workflows/cd.yml
vendored
10
.github/workflows/cd.yml
vendored
|
|
@ -54,7 +54,8 @@ jobs:
|
|||
VERSION="${INPUT#v}"
|
||||
MAJOR=$(echo "$VERSION" | cut -d. -f1)
|
||||
MINOR=$(echo "$VERSION" | cut -d. -f2)
|
||||
echo "version_tags=${VERSION},${MAJOR}.${MINOR},${MAJOR}" >> $GITHUB_ENV
|
||||
# Include latest explicitly
|
||||
echo "version_tags=${VERSION},${MAJOR}.${MINOR},${MAJOR},latest" >> $GITHUB_ENV
|
||||
else
|
||||
echo "version_tags=" >> $GITHUB_ENV
|
||||
fi
|
||||
|
|
@ -69,17 +70,16 @@ jobs:
|
|||
flavor: |
|
||||
latest=auto
|
||||
tags: |
|
||||
# Semver tags from real Git tags
|
||||
# From real Git tags (v1.2.3)
|
||||
type=semver,pattern={{version}}
|
||||
type=semver,pattern={{major}}.{{minor}}
|
||||
type=semver,pattern={{major}}
|
||||
|
||||
# Manual input derived tags
|
||||
# Manual input tags
|
||||
type=raw,value=${{ env.version_tags }},enable=${{ env.version_tags != '' }}
|
||||
|
||||
# Fallbacks for branches/PRs
|
||||
# Fallbacks
|
||||
type=ref,event=branch
|
||||
type=ref,event=pr
|
||||
type=sha
|
||||
|
||||
- name: Build and push Docker image
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue