2018-09-29 18:34:47 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-10-12 17:47:32 -04:00
|
|
|
module Backup
|
2020-09-28 02:09:56 -04:00
|
|
|
class Artifacts < Backup::Files
|
2018-05-24 10:58:25 -04:00
|
|
|
attr_reader :progress
|
|
|
|
|
|
|
|
def initialize(progress)
|
|
|
|
@progress = progress
|
|
|
|
|
2020-09-14 08:09:34 -04:00
|
|
|
super('artifacts', JobArtifactUploader.root, excludes: ['tmp'])
|
2015-10-12 17:47:32 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|