We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4976adc commit 8ea8f20Copy full SHA for 8ea8f20
1 file changed
.gitlab-ci.yml
@@ -1,6 +1,7 @@
1
2
stages:
3
- tests
4
+ - image
5
6
.run_tests_template: &run_tests
7
stage: tests
@@ -37,3 +38,16 @@ node-11-llvm-8:
37
38
allow_failure: true
39
image: registry.gitlab.com/ovr/staticscript:node-11-llvm-8
40
<<: *run_tests
41
+
42
+next:
43
+ stage: image
44
+ image:
45
+ name: gcr.io/kaniko-project/executor:debug
46
+ entrypoint: [""]
47
+ script:
48
+ - echo "{\"auths\":{\"$CI_REGISTRY\":{\"username\":\"$CI_REGISTRY_USER\",\"password\":\"$CI_REGISTRY_PASSWORD\"}}}" > /kaniko/.docker/config.json
49
+ - /kaniko/executor --context $CI_PROJECT_DIR --dockerfile $CI_PROJECT_DIR/docker/next/Dockerfile --destination $CI_REGISTRY_IMAGE:next
50
+ only:
51
+ - master
52
+ tags:
53
+ - docker
0 commit comments