Skip to content
Snippets Groups Projects
Commit 634e6c9c authored by Yana Kernerman's avatar Yana Kernerman
Browse files

add workflow

parent d0f28c60
No related branches found
No related tags found
1 merge request!24Tut01 test exercise
workflow:
rules:
- if: $CI_PIPELINE_SOURCE == "merge_request_event"
when: always
- if: $CI_PIPELINE_SOURCE == "push" && $CI_COMMIT_BRANCH == "main"
when: always
- when: never
stages: stages:
- test - test
- build - build
...@@ -15,7 +23,7 @@ job_test_the_code: ...@@ -15,7 +23,7 @@ job_test_the_code:
job_build_artifact: job_build_artifact:
stage: build stage: build
rules: rules:
- if: $CI_PIPELINE_SOURCE == "merge_request_event" && $CI_MERGE_REQUEST_TARGET_BRANCH_NAME == "main" - if: $CI_PIPELINE_SOURCE == "push" && $CI_COMMIT_REF_NAME =~ /main/
when: always when: always
image: registry.hub.docker.com/library/golang:1.21 image: registry.hub.docker.com/library/golang:1.21
script: script:
...@@ -51,4 +59,3 @@ job_publish_artifact: ...@@ -51,4 +59,3 @@ 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/1.0.0/webservice" "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/generic/artifacts/1.0.0/webservice"
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