We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 636ba9b commit 5f3f698Copy full SHA for 5f3f698
delivery.yaml
@@ -55,7 +55,7 @@ pipeline:
55
56
- id: build-operator-ui
57
type: script
58
-
+ requires_human_approval: true
59
commands:
60
- desc: 'Prepare environment'
61
cmd: |
@@ -80,3 +80,15 @@ pipeline:
80
export IMAGE
81
make docker
82
make push
83
+
84
+ - id: build-logical-backup
85
+ type: script
86
87
+ commands:
88
+ - desc: Build image
89
+ cmd: |
90
+ cd docker/logical-backup
91
+ export TAG=$(git describe --tags --always --dirty)
92
+ IMAGE="registry-write.opensource.zalan.do/acid/logical-backup"
93
+ docker build --rm -t "$IMAGE:$TAG$CDP_TAG" .
94
+ docker push "$IMAGE:$TAG$CDP_TAG"
0 commit comments