From d0e64bac812c61f9b1b6b081b76d2a5d75220839 Mon Sep 17 00:00:00 2001 From: V1ck3s Date: Thu, 8 Jan 2026 18:11:44 +0100 Subject: [PATCH] feat: add dev branch to CI/CD pipeline and semver tag support --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ae1c7a0..e686273 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,7 @@ on: tags: ['v*'] pull_request: types: [closed] - branches: [master] + branches: [master, dev] env: DOTNET_VERSION: "9.0.x" @@ -72,7 +72,11 @@ jobs: tags: | type=ref,event=branch type=sha,prefix= + type=semver,pattern={{version}} + type=semver,pattern={{major}}.{{minor}} + type=semver,pattern={{major}} type=raw,value=latest,enable=${{ github.ref == 'refs/heads/master' }} + type=raw,value=dev,enable=${{ github.ref == 'refs/heads/dev' }} - name: Build and push uses: docker/build-push-action@v6