separate steps, easier to debug later
This commit is contained in:
parent
c0b3fa7aa3
commit
dfaedca61d
1 changed files with 26 additions and 2 deletions
|
@ -6,11 +6,35 @@ steps:
|
|||
- cpanm --verbose --installdeps .
|
||||
- perl generate.pl
|
||||
- tar -c output/perls -vJf output.tar.xz
|
||||
upload-downloads:
|
||||
upload-downloads-gz:
|
||||
image: woodpeckerci/plugin-s3
|
||||
settings:
|
||||
bucket: docker-perl-artifacts
|
||||
source: ["output/downloads/*.gz", "output/downloads/*.xz", "output/downloads/*.bz2"]
|
||||
source: "output/downloads/*.gz"
|
||||
target: /sources/
|
||||
path_style: true
|
||||
endpoint: http://192.168.1.62:9000
|
||||
access_key:
|
||||
from_secret: minio_access_key
|
||||
secret_key:
|
||||
from_secret: minio_secret_key
|
||||
upload-downloads-bz2:
|
||||
image: woodpeckerci/plugin-s3
|
||||
settings:
|
||||
bucket: docker-perl-artifacts
|
||||
source: "output/downloads/*.bz2"
|
||||
target: /sources/
|
||||
path_style: true
|
||||
endpoint: http://192.168.1.62:9000
|
||||
access_key:
|
||||
from_secret: minio_access_key
|
||||
secret_key:
|
||||
from_secret: minio_secret_key
|
||||
upload-downloads-xz:
|
||||
image: woodpeckerci/plugin-s3
|
||||
settings:
|
||||
bucket: docker-perl-artifacts
|
||||
source: "output/downloads/*.xz"
|
||||
target: /sources/
|
||||
path_style: true
|
||||
endpoint: http://192.168.1.62:9000
|
||||
|
|
Loading…
Add table
Reference in a new issue