Skip to content
Snippets Groups Projects
Commit b1d920ff authored by Falk's avatar Falk :ping_pong:
Browse files

chore: fixing pipeline issues

- correct path to Dockerfile in CI script
- deactivate CI-Pipeline filter (existing tag)
parent 1978ded4
No related branches found
No related tags found
No related merge requests found
......@@ -52,9 +52,10 @@ build:
- test_server
tags:
- docker-privileged
rules:
- if: $CI_COMMIT_TAG
when: always
# Deactivate filter for testing purposes
# rules:
# - if: $CI_COMMIT_TAG
# when: always
image: docker:19.03.12
services:
- docker:19.03.12-dind
......@@ -64,7 +65,6 @@ build:
IMAGE_TAG: "${CI_REGISTRY_IMAGE}:${CI_COMMIT_SHORT_SHA}-${CI_COMMIT_TAG}"
RELEASE_IMAGE_TAG: "${CI_REGISTRY_IMAGE}:${CI_COMMIT_SHORT_SHA}-${CI_PIPELINE_IID}:latest"
script:
- cd app/server
- docker build -t $IMAGE_TAG .
- docker tag $IMAGE_TAG $RELEASE_IMAGE_TAG
- docker push $IMAGE_TAG
......
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