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 22f1f1d commit ee9bb97Copy full SHA for ee9bb97
.gitlab-ci.yml
@@ -4,6 +4,7 @@ build-operator:
4
IMAGE: "$DOCKER_REPO:$CI_COMMIT_BRANCH"
5
OP_YAML: oracle-database-operator.yaml
6
script:
7
+ - echo $CI_COMMIT_TAG
8
- make docker-build IMG="$IMAGE"
9
- docker push "$IMAGE"
10
- newimage=$(docker inspect $IMAGE | python -c 'import json,sys; print json.load(sys.stdin)[0]["RepoDigests"][0]')
@@ -20,6 +21,7 @@ build-operator:
20
21
except:
22
variables:
23
- $CI_COMMIT_MESSAGE =~ /\#skip-pipeline/
24
+ - $CI_COMMIT_TAG != null
25
26
cleanup:
27
stage: .post
0 commit comments