woodpecker-scp/plugin.sh
Andreas Mieke b54f434cb2
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
fix: Remove ambigious chmod for directory
2023-12-29 13:25:32 +01:00

8 lines
268 B
Bash

#!/bin/sh
mkdir -p /root/.ssh
echo "${PLUGIN_SSH_KEY}" > "/root/.ssh/id_rsa"
chmod 0600 /root/.ssh/id_rsa
echo "${PLUGIN_SSH_KNOWN_HOSTS}" > "/root/.ssh/known_hosts"
chmod 0600 /root/.ssh/known_hosts
scp -B ${PLUGIN_EXTRA_FLAGS} ${PLUGIN_SOURCE} ${PLUGIN_DESTINATION}