conference-site/.gitea/workflows/build-deploy.yml

30 lines
917 B
YAML
Raw Normal View History

2024-03-02 00:26:27 +00:00
---
2024-03-02 17:41:05 +00:00
name: build and deploy
2024-03-02 00:26:27 +00:00
on: [push]
jobs:
2024-03-02 17:41:05 +00:00
build:
2024-03-02 00:26:27 +00:00
runs-on: site-builder
steps:
- uses: actions/checkout@v4
- run: /venv/bin/pip install -r requirements.txt
- run: /venv/bin/pelican content -s publishconf.py
2024-03-02 00:26:27 +00:00
deploy:
runs-on: site-deployer
2024-03-02 00:26:27 +00:00
steps:
2024-03-02 17:41:05 +00:00
- uses: burnett01/rsync-deployments@6.0.0
with:
path: output/
remote_host: ${{ secrets.REMOTE_HOST }}
remote_port: ${{ secrets.REMOTE_PORT }}
remote_user: ${{ secrets.REMOTE_USER }}
remote_key: ${{ secrets.SSH_PRIVATE_KEY }}
remote_path: /var/www/conference
- uses: appleboy/ssh-action@v1.0.3
with:
host: ${{ secrets.REMOTE_HOST }}
port: ${{ secrets.REMOTE_PORT }}
username: ${{ secrets.REMOTE_USER }}
key: ${{ secrets.SSH_PRIVATE_KEY }}
script: sudo chown -R root:www-data /var/www/conference