Update CI/CD workflows to trigger on master branch instead of dev
All checks were successful
CI - Build and Push / Build and Push Docker Image (push) Successful in 15s

This commit is contained in:
2025-10-06 14:37:01 +08:00
parent 659ab2c8c4
commit f2cc11f537
2 changed files with 4 additions and 4 deletions

View File

@@ -11,7 +11,7 @@ on:
types:
- completed
branches:
- dev
- master
workflow_dispatch:
# Environment variables available to all jobs

View File

@@ -1,14 +1,14 @@
# Continuous Integration Workflow
# This workflow builds and pushes Docker images to your private registry
# Trigger: Push to dev branch or manual dispatch
# Trigger: Push to master branch or manual dispatch
name: CI - Build and Push
# Trigger configuration - automatic on dev push, manual dispatch available
# Trigger configuration - automatic on master push, manual dispatch available
on:
push:
branches:
- dev
- master
workflow_dispatch:
# Environment variables available to all jobs