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

Fix typo

parent e06df346
Branches
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
** Calls `ddeploy` to generate the docker image
** Renames the image created by ddeploy with different tags and pushes them to the registry.
*** Tag `${COMMIT_SHA}` (hash of commit)
*** Tag `${CI_COMMIT_REF}` (branch or tag name)
*** Tag `${CI_COMMIT_REF_NAME}` (branch or tag name)
*** Tag `latest` only on the default branch
- Stage: `.post`
* Check `bash`/`sh` script syntax
......
......@@ -19,7 +19,7 @@
variables:
DOCKER_PUSH_REGISTRY: ${ARTIFACT_DOCKER_URL}
DOCKER_PUSH_NAME: ${CI_PROJECT_PATH}
DOCKER_PUSH_TAG: ${CI_COMMIT_REF}
DOCKER_PUSH_TAG: ${CI_COMMIT_REF_NAME}
DDEPLOY_YAML: ddeploy.yaml
before_script:
- 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.
Please register or to comment