Compare commits
6 Commits
52f1fb4a88
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| e84e4be5fb | |||
| f438393e8e | |||
| 1eb4644128 | |||
| d994cf2949 | |||
| aa18b7c488 | |||
| 34491d8fd4 |
@@ -1,3 +1,5 @@
|
|||||||
|
[](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
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user