Skip to content
Snippets Groups Projects
Commit 22e467b4 authored by Iñigo Moreno i Caireta's avatar Iñigo Moreno i Caireta
Browse files

Merge branch '44-wrong-tag-naming' into 'master'

Resolve "Wrong tag naming"

Closes #44

See merge request !74
parents c873c66a 30d73bef
No related branches found
No related tags found
1 merge request!74Resolve "Wrong tag naming"
Pipeline #78331 passed
...@@ -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_NAME}` (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_NAME}
DDEPLOY_YAML: ddeploy.yaml DDEPLOY_YAML: ddeploy.yaml
before_script: before_script:
- apk add --update python3 git py3-pip git-lfs bash curl jq - apk add --update python3 git py3-pip git-lfs bash curl jq
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment