6 Commits

Author SHA1 Message Date
damage e84e4be5fb set secrets as env
ci/woodpecker/manual/woodpecker Pipeline was successful
2026-04-03 20:29:51 +02:00
damage f438393e8e fix typo
ci/woodpecker/manual/woodpecker Pipeline was successful
2026-04-03 20:27:23 +02:00
damage 1eb4644128 ubuntu image w/o curl
ci/woodpecker/manual/woodpecker Pipeline failed
2026-04-03 20:23:41 +02:00
damage d994cf2949 add build status badge
ci/woodpecker/manual/woodpecker Pipeline failed
2026-04-03 20:16:38 +02:00
damage aa18b7c488 upload deb package from woodpecker 2026-04-03 20:15:19 +02:00
damage 34491d8fd4 for test
ci/woodpecker/manual/woodpecker Pipeline was successful
2026-04-03 13:26:34 +02:00
2 changed files with 13 additions and 1 deletions
+2
View File
@@ -1,3 +1,5 @@
[![status-badge](https://build.devloop.de/api/badges/10/status.svg?events=push%2Cmanual%2Ctag)](https://build.devloop.de/repos/10)
# S3H # S3H
Select a ssh config file which will be used to connect to a host via - you guessed it - ssh. The content of the config file is _NOT_ like `ssh_config`. The content will be read by line and every line will be added as parameter to the ssh command. So you can use your global and/or user defined `ssh_config` and still add options. Select a ssh config file which will be used to connect to a host via - you guessed it - ssh. The content of the config file is _NOT_ like `ssh_config`. The content will be read by line and every line will be added as parameter to the ssh command. So you can use your global and/or user defined `ssh_config` and still add options.
+11 -1
View File
@@ -1,8 +1,18 @@
when: when:
- event: [tag] - event: [tag, manual]
steps: steps:
- name: ubuntu - name: ubuntu
image: ubuntu:24.04 image: ubuntu:24.04
commands: commands:
- build/deb/build_stable.sh - 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