Skip to content
Snippets Groups Projects

ci: setup application helms in the monorepo

Merged Zdravko Iliev requested to merge find-dist-location into main
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -2,7 +2,7 @@ FROM node:18.16.0-buster-slim
# Argument handler
ARG API_TOKEN
ARG GATEWAY_ID
ARG JOB_ID
# Instal required software
RUN apt update -y && apt install python3 git make build-essential wget unzip -y
@@ -14,7 +14,7 @@ WORKDIR app
ENV GITLAB_BASE_URL=https://code.vereign.com/api/v4
ENV GITLAB_PROJECT_ID=662
ENV TOKEN=$API_TOKEN
ENV ID=$GATEWAY_ID
ENV ID=$JOB_ID
# Download the artifacts from the GitLab API
RUN wget --header "PRIVATE-TOKEN: $TOKEN" -O artifacts.zip "${GITLAB_BASE_URL}/projects/${GITLAB_PROJECT_ID}/jobs/${ID}/artifacts"
Loading