Merge branch '34-workaround-job-not-available' into 'development'
refactor: latest job artifacts as specified by name are not available See merge request nofusscomputing/projects/gitlab-ci!52
This commit is contained in:
@ -68,14 +68,22 @@
|
|||||||
when: always
|
when: always
|
||||||
|
|
||||||
- if: # condition_dev_branch_push
|
- if: # condition_dev_branch_push
|
||||||
$CI_COMMIT_BRANCH == "development" &&
|
$CI_COMMIT_BRANCH == "development" &&
|
||||||
$CI_PIPELINE_SOURCE == "push"
|
(
|
||||||
|
$CI_PIPELINE_SOURCE == "pipeline"
|
||||||
|
||
|
||||||
|
$CI_PIPELINE_SOURCE == "push"
|
||||||
|
||
|
||||||
|
$CI_PIPELINE_SOURCE == "schedule"
|
||||||
|
)
|
||||||
|
# See nofusscomputing/projects/gitlab-ci#34 for extra $CI_PIPELINE_SOURCE
|
||||||
exists:
|
exists:
|
||||||
- '{docs/**,pages/**}/*.md'
|
- '{docs/**,pages/**}/*.md'
|
||||||
changes:
|
# No changes check # See nofusscomputing/projects/gitlab-ci#34
|
||||||
paths:
|
# changes:
|
||||||
- '{docs/**,pages/**}/*.md'
|
# paths:
|
||||||
compare_to: 'master'
|
# - '{docs/**,pages/**}/*.md'
|
||||||
|
# compare_to: 'master'
|
||||||
when: always
|
when: always
|
||||||
|
|
||||||
- if: # condition_not_master_or_dev_push
|
- if: # condition_not_master_or_dev_push
|
||||||
|
@ -43,13 +43,21 @@
|
|||||||
|
|
||||||
- if: # condition_dev_branch_push
|
- if: # condition_dev_branch_push
|
||||||
$CI_COMMIT_BRANCH == "development" &&
|
$CI_COMMIT_BRANCH == "development" &&
|
||||||
$CI_PIPELINE_SOURCE == "push"
|
(
|
||||||
|
$CI_PIPELINE_SOURCE == "pipeline"
|
||||||
|
||
|
||||||
|
$CI_PIPELINE_SOURCE == "push"
|
||||||
|
||
|
||||||
|
$CI_PIPELINE_SOURCE == "schedule"
|
||||||
|
)
|
||||||
|
# See nofusscomputing/projects/gitlab-ci#34 for extra $CI_PIPELINE_SOURCE
|
||||||
exists:
|
exists:
|
||||||
- 'mkdocs.{yaml,yml}'
|
- 'mkdocs.{yaml,yml}'
|
||||||
changes:
|
# No changes check # See nofusscomputing/projects/gitlab-ci#34
|
||||||
paths:
|
# changes:
|
||||||
- '{docs/**,pages/**}/*.md'
|
# paths:
|
||||||
compare_to: 'master'
|
# - '{docs/**,pages/**}/*.md'
|
||||||
|
# compare_to: 'master'
|
||||||
when: always
|
when: always
|
||||||
|
|
||||||
- if: # condition_not_master_or_dev_push
|
- if: # condition_not_master_or_dev_push
|
||||||
|
Reference in New Issue
Block a user