Skip to content
Snippets Groups Projects
Commit e06df346 authored by Jon Azpiazu's avatar Jon Azpiazu
Browse files

Fix tag name for ddeploy docker image

parent 3c95d5eb
No related branches found
No related tags found
No related merge requests found
...@@ -23,7 +23,7 @@ The Core pipeline, defined in link:ci-templates/core.yml[], has the following st ...@@ -23,7 +23,7 @@ The Core pipeline, defined in link:ci-templates/core.yml[], has the following st
** Calls `ddeploy` to generate the docker image ** Calls `ddeploy` to generate the docker image
** Renames the image created by ddeploy with different tags and pushes them to the registry. ** Renames the image created by ddeploy with different tags and pushes them to the registry.
*** Tag `${COMMIT_SHA}` (hash of commit) *** Tag `${COMMIT_SHA}` (hash of commit)
*** Tag `${CI_COMMIT_REF_SLUG}` (branch or tag name) *** Tag `${CI_COMMIT_REF}` (branch or tag name)
*** Tag `latest` only on the default branch *** Tag `latest` only on the default branch
- Stage: `.post` - Stage: `.post`
* Check `bash`/`sh` script syntax * Check `bash`/`sh` script syntax
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
variables: variables:
DOCKER_PUSH_REGISTRY: ${ARTIFACT_DOCKER_URL} DOCKER_PUSH_REGISTRY: ${ARTIFACT_DOCKER_URL}
DOCKER_PUSH_NAME: ${CI_PROJECT_PATH} DOCKER_PUSH_NAME: ${CI_PROJECT_PATH}
DOCKER_PUSH_TAG: ${CI_COMMIT_REF_SLUG} DOCKER_PUSH_TAG: ${CI_COMMIT_REF}
DDEPLOY_YAML: ddeploy.yaml DDEPLOY_YAML: ddeploy.yaml
before_script: before_script:
- apk add --update python3 git py3-pip git-lfs - apk add --update python3 git py3-pip git-lfs
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment