added github action to deploy the server

This commit is contained in:
Ell 2024-05-08 17:41:15 +02:00
parent 876af1a13a
commit 3e1d1c8292
3 changed files with 25 additions and 13 deletions

View file

@ -7,3 +7,6 @@ insert_final_newline = true
indent_style = space
indent_size = 4
tab_width = 4
[{*.yml,*.yaml}]
indent_size = 2

22
.github/workflows/server.yml vendored Normal file
View file

@ -0,0 +1,22 @@
on:
push:
branches: [main]
jobs:
deploy-server:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
# this is a beautiful way to deploy a website and i will not take any criticism
# (though maybe if you self-host this, you should use a better way to deploy your site)
- name: Deploy
run: |
apt update && apt install -y rsync
curl -L --output cloudflared.deb https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-amd64.deb && sudo dpkg -i cloudflared.deb
echo "${{ secrets.ELLBOT_KEY }}" > ~/.ssh/id_rsa && chmod 600 ~/.ssh/id_rsa
rsync -rv --delete -e 'ssh -o "ProxyCommand cloudflared access ssh --hostname %h" -o "StrictHostKeyChecking=no"' server/public/ ellbot@ssh.ellpeck.de:/var/www/jsp/public
- name: Purge Cloudflare cache
uses: https://github.com/NathanVaughn/actions-cloudflare-purge@v3.1.0
with:
cf_zone: ${{ secrets.CLOUDFLARE_ZONE }}
cf_auth: ${{ secrets.CLOUDFLARE_TOKEN }}

View file

@ -1,13 +0,0 @@
when:
path: "server/**"
steps:
deploy-server:
image: debian:latest
when:
- event: [push, manual]
branch: main
commands:
- rm -rfv /var/www/jsp/public/*
- cp -rv server/. /var/www/jsp
volumes:
- /var/www/jsp:/var/www/jsp