CI: Fix image publish

This commit is contained in:
Igor Scheller 2022-04-01 10:51:03 +02:00
parent 7e2e3cdd71
commit 928452e4e6
1 changed files with 2 additions and 2 deletions

View File

@ -207,7 +207,7 @@ release-image:
needs: [ test ] needs: [ test ]
dependencies: [ ] dependencies: [ ]
script: script:
- echo -e "FROM ${TEST_IMAGE}" | executor --dockerfile /dev/stdin --destination "${RELEASE_IMAGE}" - echo -e "FROM ${TEST_IMAGE}" | /kaniko/executor --force --dockerfile /dev/stdin --destination "${RELEASE_IMAGE}"
only: only:
- main - main
@ -219,7 +219,7 @@ release-image-nginx:
- build-image-nginx - build-image-nginx
dependencies: [ ] dependencies: [ ]
script: script:
- echo -e "FROM ${TEST_IMAGE_NGINX}" | executor --dockerfile /dev/stdin --destination "${RELEASE_IMAGE_NGINX}" - echo -e "FROM ${TEST_IMAGE_NGINX}" | /kaniko/executor --force --dockerfile /dev/stdin --destination "${RELEASE_IMAGE_NGINX}"
only: only:
- main - main