debian-mirror-gitlab/app/uploaders/ci/pipeline_artifact_uploader.rb

22 lines
411 B
Ruby
Raw Normal View History

2020-10-24 23:57:45 +05:30
# frozen_string_literal: true
module Ci
class PipelineArtifactUploader < GitlabUploader
include ObjectStorage::Concern
2023-05-27 22:25:52 +05:30
storage_location :artifacts
2020-10-24 23:57:45 +05:30
alias_method :upload, :model
def store_dir
dynamic_segment
end
private
def dynamic_segment
Gitlab::HashedPath.new('pipelines', model.pipeline_id, 'artifacts', model.id, root_hash: model.project_id)
end
end
end