aboutsummaryrefslogtreecommitdiff
path: root/.gitea/workflows/deploy.yaml
diff options
context:
space:
mode:
Diffstat (limited to '.gitea/workflows/deploy.yaml')
-rw-r--r--.gitea/workflows/deploy.yaml22
1 files changed, 0 insertions, 22 deletions
diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml
deleted file mode 100644
index 0059230..0000000
--- a/.gitea/workflows/deploy.yaml
+++ /dev/null
@@ -1,22 +0,0 @@
-name: Deploying Static Site
-on: [push]
-
-jobs:
- Build:
- container:
- image: "git.soaos.dev/soaos/ringfairy:latest"
- steps:
- - name: Check out repository code
- uses: actions/checkout@v4
- - name: Build webring using ringfairy
- run: 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 webring/. git@192.168.1.113:/var/www/evilr.ing
-