32 lines
1.1 KiB
YAML
32 lines
1.1 KiB
YAML
---
|
|
name: build and deploy
|
|
on: [push]
|
|
jobs:
|
|
build+deploy:
|
|
runs-on: site-builder
|
|
steps:
|
|
- name: Pull del repository
|
|
uses: actions/checkout@v4
|
|
- name: Installazione dipendenze sito
|
|
run: /venv/bin/pip install -r requirements.txt
|
|
- name: Compilazione del sito
|
|
run: /venv/bin/pelican content -s publishconf.py
|
|
- name: Trasferimento del sito
|
|
uses: burnett01/rsync-deployments@6.0.0
|
|
with:
|
|
switches: -avz --delete
|
|
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
|
|
- name: Sistemazione permessi
|
|
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
|