Skip to content

Commit 66a4820

Browse files
committed
Add a minimal circelci config to build and push docker images
1 parent d269ed5 commit 66a4820

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

.circleci/config.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
version: 2.1
2+
3+
orbs:
4+
releaser: truelayer/releaser@3
5+
rust: truelayer/rust@2
6+
7+
# Definitions for shared steps.
8+
definitions:
9+
filters:
10+
on_tag: &on_tag
11+
tags:
12+
only: /v[0-9]+(\.[0-9]+)*(-\w+)?/
13+
branches:
14+
ignore: /.*/
15+
16+
workflows:
17+
version: 2
18+
build-test-deploy:
19+
jobs:
20+
- releaser/docker-build-and-push:
21+
image_name: "flagger"
22+
context:
23+
- org-global
24+
- euw1-development
25+
registries: "jfrog,aws_ecr"
26+
with_cachepot: true
27+
filters:
28+
<<: *on_tag

0 commit comments

Comments
 (0)