Compare commits

..

No commits in common. "4ac2b666df50a8dc05e74d356e47b4aa81953e3e" and "5ee030a3e51eda42d3b1a613574845fcff718eee" have entirely different histories.

3 changed files with 9 additions and 20 deletions

View file

@ -1 +1,2 @@
apt-get install 'tree'
tree -a "${GITHUB_WORKSPACE}"

24
cd-init
View file

@ -1,25 +1,11 @@
# packages
apt-get install --yes \
'rsync' \
'tree' \
# ssh
mkdir --parents ~/.ssh
echo "${CD}" > ~/.ssh/id_ed25519
unset CD
chmod 400 ~/.ssh/id_ed25519
echo -n "\
|1|BcccCTMLpM9HHSgJmPu/FFOwOv0=|+3BKK02xibpCPxQ9Nghi2GbXLng= \
ssh-ed25519 \
AAAAC3NzaC1lZDI1NTE5AAAAIPHCNcgHlQoiNTXfnUZYvHz9OZwYsmBCrSSV7a7Zche5
" > ~/.ssh/known_hosts
# variables
export SSH="cd@de.tilde.link"
export TARGET="${SSH}:/cd/${GITHUB_REF_NAME}/${GITHUB_REPOSITORY}"
ssh \
-o StrictHostKeyChecking=accept-new \
'cd@de.tilde.link' \
-- \
hostname

View file

@ -1,6 +1,8 @@
apt-get install --yes 'rsync'
rsync \
--archive \
--delete-before \
--verbose \
'out/' \
"${TARGET}/"
"cd@de.tilde.link:/cd/${GITHUB_REF_NAME}/${GITHUB_REPOSITORY}/"