mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-10 00:12:09 +00:00
14 lines
444 B
Bash
14 lines
444 B
Bash
#!/bin/sh
|
|
# For CI: configures SSH and installs binaries that I use to build my site.
|
|
# The binaries are statically-linked for Linux on x86_64
|
|
set -e -u
|
|
|
|
# configure ssh
|
|
echo "VerifyHostKeyDNS=yes
|
|
KexAlgorithms=sntrup761x25519-sha512@openssh.com" >> ~/.ssh/config
|
|
|
|
# mirrored at https://seirdy.one/pb/binaries.tar.gz
|
|
rsync -WPv deploy@seirdy.one:/var/www/pb/binaries.tar.gz .
|
|
mkdir -p ~/bin
|
|
tar xzf binaries.tar.gz -oC ~/bin
|
|
rm binaries.tar.gz
|