Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-11-17 03:08:12 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-11-17 03:08:12 +0300
commite7ddd83a4484ff9fdf355d8eb726db9bfd3dd521 (patch)
treeb848db807804e8ab903825b6eeb12183362c619e /app/services/ci
parent740262cd8084189111bc134900bbbc1278b7e7ea (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/services/ci')
-rw-r--r--app/services/ci/job_artifacts/create_service.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/ci/job_artifacts/create_service.rb b/app/services/ci/job_artifacts/create_service.rb
index c09b0cf81f1..b04e73c69ee 100644
--- a/app/services/ci/job_artifacts/create_service.rb
+++ b/app/services/ci/job_artifacts/create_service.rb
@@ -132,7 +132,7 @@ module Ci
return accessibility if accessibility.present?
- job.artifacts_public? ? :public : :private
+ job.artifact_is_public_in_config? ? :public : :private
end
def parse_artifact(artifact)