From f83600412b4acc04292d882195c11836744a1570 Mon Sep 17 00:00:00 2001 From: songtianlun Date: Wed, 22 Jan 2025 09:37:35 +0800 Subject: [PATCH] chore: update docker workflow to include tags - Add support for tagging workflow triggers on pushes - Include version tags following the pattern 'v*' This change enhances the Docker workflow by allowing the CI/CD pipeline to respond to version tags, which is beneficial for versioned releases and better management of deployment processes. --- .github/workflows/docker.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index f6be385..342d85f 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -4,6 +4,8 @@ on: push: branches: - main + tags: + - v* env: # Use docker.io for Docker Hub if empty