wip, ci: remove quoting from publish commands?
ci/woodpecker/push/woodpecker Pipeline failed Details

Tomáš Mládek 2023-08-12 16:08:17 +02:00
parent 2e0d7f3275
commit cc4cb206ef
1 changed files with 4 additions and 4 deletions

View File

@ -123,12 +123,12 @@ pipeline:
image: albedo.lan:5000/upend-deploy:latest
pull: true
commands:
- echo -e "$GPG_SIGN_KEY" | gpg --import
- echo -e $GPG_SIGN_KEY | gpg --import
- gpg --clear-sign "*.AppImage"
- mkdir -p $HOME/.ssh
- echo -e "$SSH_CONFIG" > $HOME/.ssh/config
- echo -e "$SSH_UPLOAD_KEY" > $HOME/.ssh/id_rsa
- echo -e "$SSH_KNOWN_HOSTS" > $HOME/.ssh/known_hosts
- echo -e $SSH_CONFIG > $HOME/.ssh/config
- echo -e $SSH_UPLOAD_KEY > $HOME/.ssh/id_rsa
- echo -e $SSH_KNOWN_HOSTS > $HOME/.ssh/known_hosts
- chmod 600 $HOME/.ssh/*
- scp "*.AppImage" "*.asc" mainsite:releases
secrets: [gpg_sign_key, ssh_config, ssh_upload_key, ssh_known_hosts]