Skip to content

Commit

Permalink
Create workflow to build the Docker image on any branch
Browse files Browse the repository at this point in the history
The Docker image will be build on any branch, to ensure the healthiness
of this process. Apart from that, the "build_and_release" job will only
be executed when we create a new tag in the repo.
  • Loading branch information
jordipiqueselles committed Aug 15, 2023
1 parent 2bd0a2f commit 30f7944
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,16 @@ jobs:
workflows:
version: 2
build-master:
build-branch:
jobs:
- build

build-on-tag:
jobs:
- build_and_release:
context: conntest-dockerhub-release
filters:
tags:
only: /.*/
branches:
ignore: /.*/

0 comments on commit 30f7944

Please sign in to comment.