Skip to content
Snippets Groups Projects

Tut01 test exercise

Closed Yana Kernerman requested to merge s92604/devops-webservice:tut01 into main
1 file
+ 1
3
Compare changes
  • Side-by-side
  • Inline
+ 1
3
@@ -35,7 +35,7 @@ job_build_artifact:
@@ -35,7 +35,7 @@ job_build_artifact:
job_publish_artifact:
job_publish_artifact:
stage: publish
stage: publish
rules: # Conditions under which this job should run
rules: # Conditions under which this job should run
- if: $CI_COMMIT_TAG # only for tags
- if: $CI_COMMIT_REF_NAME =~ /^.*$/ # Run this job for any branch or merge request event.
when: always
when: always
image: curlimages/curl:latest # Custom image with curl
image: curlimages/curl:latest # Custom image with curl
tags:
tags:
@@ -49,6 +49,4 @@ job_publish_artifact:
@@ -49,6 +49,4 @@ job_publish_artifact:
--header "JOB-TOKEN: ${CI_JOB_TOKEN}" \
--header "JOB-TOKEN: ${CI_JOB_TOKEN}" \
--upload-file ./artifact.bin \
--upload-file ./artifact.bin \
"${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/generic/artifacts/${version}/webservice"
"${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/generic/artifacts/${version}/webservice"
only:
- tags
Loading