Skip to content
Snippets Groups Projects
Commit b55b5a07 authored by Dominik Hebeler's avatar Dominik Hebeler
Browse files

added job to sync lang files before build

parent 964676ff
No related branches found
No related tags found
No related merge requests found
Pipeline #7344 failed
variables:
NODE_IMAGE: node:19-bullseye
ACCENT_IMAGE: mirego/accent:v1.14.2
DOCKER_HOST: "tcp://docker-dind.gitlab-suma:2375"
DOCKER_BUILD_IMAGE: docker:20.10.15
DOCKER_IMAGE_NAME: keymanager
......@@ -32,12 +33,27 @@ npm_deps:
only:
- main
lang_files:
stage: build
image: ${ACCENT_IMAGE}
artifacts:
public: false
paths:
- pass/lang
script:
- cd pass
- accent sync
only:
- main
build:
stage: build
image: ${DOCKER_BUILD_IMAGE}
needs:
- job: npm_deps
artifacts: true
- job: lang_files
artifacts: true
before_script:
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
script:
......
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