From cc4cb206ef25e242b97bea4229dbdcf403299f2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Ml=C3=A1dek?= Date: Sat, 12 Aug 2023 16:08:17 +0200 Subject: [PATCH] wip, ci: remove quoting from publish commands? --- .woodpecker.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index e0ed3e6..2436c3f 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -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]