build tag

This commit is contained in:
harid 2026-03-05 14:13:09 +07:00
parent f584164da0
commit 011d5fb7c7
2 changed files with 13 additions and 9 deletions

View file

@ -1,11 +1,11 @@
name: Build
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
- "v[0-9]+.[0-9]+.[0-9]+*"
workflow_dispatch:
# on:
# push:
# tags:
# - "v[0-9]+.[0-9]+.[0-9]+"
# - "v[0-9]+.[0-9]+.[0-9]+*"
# workflow_dispatch:
env:
REGISTRY: ${{ vars.CONTAINER_REGISTRY }}

View file

@ -2,8 +2,8 @@ name: Build & Deploy on Dev
on:
push:
branches:
- dev
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
workflow_dispatch:
env:
@ -28,7 +28,11 @@ jobs:
ca=["/etc/ssl/certs/ca-certificates.crt"]
- name: Tag Version
run: |
echo "IMAGE_VERSION=${{ env.IMAGE_VERSION }}"
if [ "${{ github.ref_type }}" == "tag" ]; then
echo "IMAGE_VERSION=${{ github.ref_name }}" >> $GITHUB_ENV
else
echo "IMAGE_VERSION=latest" >> $GITHUB_ENV
fi
- name: Login in to registry
uses: docker/login-action@v2
with: