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
All checks were successful
CI - Build and Push / Build and Push Docker Image (push) Successful in 15s
This commit is contained in:
2
.github/workflows/cd.yml
vendored
2
.github/workflows/cd.yml
vendored
@@ -11,7 +11,7 @@ on:
|
|||||||
types:
|
types:
|
||||||
- completed
|
- completed
|
||||||
branches:
|
branches:
|
||||||
- dev
|
- master
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
# Environment variables available to all jobs
|
# Environment variables available to all jobs
|
||||||
|
|||||||
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
@@ -1,14 +1,14 @@
|
|||||||
# Continuous Integration Workflow
|
# Continuous Integration Workflow
|
||||||
# This workflow builds and pushes Docker images to your private registry
|
# 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
|
name: CI - Build and Push
|
||||||
|
|
||||||
# Trigger configuration - automatic on dev push, manual dispatch available
|
# Trigger configuration - automatic on master push, manual dispatch available
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- dev
|
- master
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
# Environment variables available to all jobs
|
# Environment variables available to all jobs
|
||||||
|
|||||||
Reference in New Issue
Block a user