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
+ 3
3
Compare changes
  • Side-by-side
  • Inline
@@ -19,14 +19,14 @@ 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"
# Unzip the artifacts (if needed) - adjust this command based on your artifact type
RUN unzip -q artifacts.zip && rm artifacts.zip
# Fix locations
RUN cp ./dist/apps/gateway/main.js .
RUN cp ./dist/apps/gateway/main.js.map .
RUN cp -r ./dist/libs .
# Unzip the artifacts (if needed) - adjust this command based on your artifact type
RUN unzip -q artifacts.zip && rm artifacts.zip
RUN yarn install
# Expose required ports
Loading