diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 217ae52..6a1d08d 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -11,7 +11,7 @@ on: types: - completed branches: - - dev + - master workflow_dispatch: # Environment variables available to all jobs diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d7aa469..4c495f7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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