Browse Source

chore: disable latest tag for docker

so old installations wont break until v15 is stable enough
master
Bernd Storath 1 day ago
parent
commit
9ebf2c1d33
  1. 7
      .github/workflows/deploy.yml

7
.github/workflows/deploy.yml

@ -6,6 +6,9 @@ on:
tags:
- "v*"
# This workflow does not support fixing old versions
# as this will break the latest and major tags
jobs:
docker:
name: Build & Deploy Docker
@ -31,6 +34,8 @@ jobs:
with:
images: |
ghcr.io/wg-easy/wg-easy
flavor: |
latest=false
tags: |
type=semver,pattern={{version}}
type=semver,pattern={{major}}
@ -87,8 +92,6 @@ jobs:
cd docs
git fetch origin gh-pages --depth=1 || true
# latest will point to old docs if old tag is pushed
# Extract version numbers
DOCS_VERSION=${GITHUB_REF#refs/tags/} # e.g. v1.2.3 or v1.2.3-beta
MINOR_VERSION=$(echo $DOCS_VERSION | cut -d. -f1,2) # e.g. v1.2

Loading…
Cancel
Save