19 lines
548 B
YAML
19 lines
548 B
YAML
when:
|
|
- event: [tag, manual]
|
|
|
|
steps:
|
|
- name: ubuntu
|
|
image: ubuntu:24.04
|
|
commands:
|
|
- build/deb/build_stable.sh
|
|
- name: ubuntu-upload
|
|
image: curlimages/curl:latest
|
|
pull: true
|
|
commands:
|
|
- curl --user "$PACKAGE_USERNAME:$PACKAGE_PASSWORD" --upload-file "build/deb/s3h_${CI_COMMIT_TAG}-1_all.deb" https://source.devloop.de/api/packages/damage/debian/pool/stable/main/upload
|
|
environment:
|
|
PACKAGE_USERNAME:
|
|
from_secret: package_username
|
|
PACKAGE_PASSWORD:
|
|
from_secret: package_password
|