fix: auto-build Docker image on tag push (closes #547)

Trigger Docker build workflow only when a new version tag (v*) is
pushed, instead of waiting for a GitHub Release to be published.
This removes the manual release step and keeps CI usage minimal.

Made-with: Cursor
This commit is contained in:
anuragg-saxenaa
2026-04-17 13:04:45 +07:00
committed by decolua
parent 248efacdaa
commit befb2bc3d5

View File

@@ -1,8 +1,9 @@
name: Build and Push Docker Image
on:
release:
types: [published]
push:
tags:
- "v*"
workflow_dispatch:
env: