💚 Update workflow for forgejo instance
Some checks are pending
Deploy website / build-and-deploy (push) Waiting to run

Signed-off-by: SindreKjelsrud <sindre@kjelsrud.dev>
This commit is contained in:
Sid 2024-12-04 17:06:10 +01:00
parent 2c0141b609
commit 234c0db365
Signed by: sidski
GPG key ID: D2BBDF3EDE6BA9A6
4 changed files with 57 additions and 41 deletions

View file

@ -0,0 +1,31 @@
name: Deploy website
on:
push:
branches: [main]
paths-ignore:
- 'README.md' # Ignore changes to README.md
jobs:
build-and-deploy:
runs-on: littlegarden
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up SSH
uses: webfactory/ssh-agent@v0.5.3
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
- name: Add remote host to known_hosts
run: ssh-keyscan drumisland >> ~/.ssh/known_hosts
- name: Sync files with rsync to remote server
run: |
rsync -avz --exclude='.git' --exclude='.github' --exclude='README.md' ./ sid@drumisland:kjelsrud.dev/
- name: Run docker-compose on remote server
run: ssh -o StrictHostKeyChecking=no sid@drumisland "cd kjelsrud.dev && docker-compose up -d --build"