This commit is contained in:
Manuel Romero
2025-01-14 11:41:39 +01:00
parent 9e5ae3df6e
commit f9093c57b3
4 changed files with 5 additions and 5 deletions

View File

@@ -12,8 +12,8 @@ build-app:
- dev
script:
- echo $DOCKER_REGISTRY_USER
- chmod +x ./ci/gitlab-ci.sh
- ./ci/gitlab-ci.sh
- chmod +x ./ci/gitlab-ci-app.sh
- ./ci/gitlab-ci-app.sh
build-worker:
stage: build
only:

View File

@@ -1,7 +1,7 @@
echo "--- Building QMI Cloud docker images for branch $CI_COMMIT_REF_NAME"
IMAGE_NAME="qlikgear/qmi-cloud-app"
PROJECT_FOLDER=".."
PROJECT_FOLDER="."
export VERSION=$(cat $PROJECT_FOLDER/package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[",]//g' | tr -d '[[:space:]]')

View File

@@ -1,7 +1,7 @@
echo "--- Building QMI Cloud docker images for branch $CI_COMMIT_REF_NAME"
IMAGE_NAME="qlikgear/qmi-cloud-cli"
PROJECT_FOLDER="../qmi-cloud-cli"
PROJECT_FOLDER="./qmi-cloud-cli"
export VERSION=$(cat $PROJECT_FOLDER/package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[",]//g' | tr -d '[[:space:]]')

View File

@@ -1,7 +1,7 @@
echo "--- Building QMI Cloud docker images for branch $CI_COMMIT_REF_NAME"
IMAGE_NAME="qlikgear/qmi-cloud-worker"
PROJECT_FOLDER="../qmi-cloud-worker"
PROJECT_FOLDER="./qmi-cloud-worker"
export VERSION=$(cat $PROJECT_FOLDER/package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[",]//g' | tr -d '[[:space:]]')