diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index cb082f4..c1ae138 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -1,10 +1,16 @@ -name: Deploy Docker +name: Build&Deploy Docker # Run workflow on tags starting with v (eg. v2, v1.2.0) on: + # Triggers the workflow on push or pull request events but only for the master branch push: - tags: - - v* + branches: [ master ] + pull_request: + branches: [ master ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + jobs: Deploy: