From bbeea9913cdc8a5d1aeface8da3b0233cb42ac85 Mon Sep 17 00:00:00 2001 From: Silas Bartha Date: Sat, 15 Mar 2025 22:07:56 -0400 Subject: [PATCH] add gitea workflow --- .gitea/workflows/deploy.yaml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .gitea/workflows/deploy.yaml diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml new file mode 100644 index 0000000..c566585 --- /dev/null +++ b/.gitea/workflows/deploy.yaml @@ -0,0 +1,29 @@ +name: Deploying Static Site +on: [push] + +jobs: + Build: + container: alpine:latest + steps: + - name: Install dependencies + run: apk add git nodejs openssh rust + - name: Install ringfairy + run: | + git clone https://github.com/k3rs3d/ringfairy.git + cd ringfairy + cargo build --release + cd .. + - name: Check out repository code + uses: actions/checkout@v4 + - name: Build webring using ringfairy + run: ringfairy/target/release/ringfairy + - name: Write SSH keys + run: | + install -m 600 -D /dev/null ~/.ssh/id_ed25519 + echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_ed25519 + ssh-keyscan -H 192.168.1.113 > ~/.ssh/known_hosts + - name: Copy built site to server + run: | + ssh git@192.168.1.113 "rm -rf /var/www/evilr.ing && mkdir /var/www/evilr.ing" + scp -sr public/. git@192.168.1.113:/var/www/evilr.ing +