You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
628 B
Plaintext
28 lines
628 B
Plaintext
default_settings = {
|
|
'images': {
|
|
'build': "depau/drone-makepkg:{arch}",
|
|
'sign': "depau/drone-detach-sign:{arch}",
|
|
'upload': "plugins/s3"
|
|
},
|
|
|
|
'pipeline': {
|
|
'kind': 'pipeline',
|
|
'type': 'docker'
|
|
},
|
|
|
|
'additional_steps': ['sign', 'upload'],
|
|
|
|
'sign': {
|
|
'gpg_secret_key': {'from_secret': 'gpg_secret_key'},
|
|
'gpg_passphrase': {'from_secret': 'gpg_passphrase'}
|
|
},
|
|
|
|
'upload': {
|
|
'endpoint': 'https://objstor.depau.eu',
|
|
'bucket': 'archlinux-packages',
|
|
'access_key': {'from_secret': 'minio_user'},
|
|
'secret_key': {'from_secret': 'minio_passwd'},
|
|
'path_style': True
|
|
}
|
|
}
|