Sith/.github/workflows/deploy.yml

48 lines
1.2 KiB
YAML
Raw Normal View History

name: Deploy to production
2022-08-26 14:39:10 +02:00
concurrency: production
on:
2022-08-26 13:20:57 +02:00
push:
2023-09-19 22:17:26 +02:00
branches: [master]
2022-08-26 13:20:57 +02:00
workflow_dispatch:
jobs:
2022-08-26 13:26:41 +02:00
deployment:
runs-on: ubuntu-latest
2022-08-26 13:26:41 +02:00
environment: production
2022-08-26 14:39:10 +02:00
timeout-minutes: 30
2022-08-26 13:26:41 +02:00
steps:
2022-08-26 13:20:57 +02:00
- name: SSH Remote Commands
2024-10-15 12:32:40 +02:00
uses: appleboy/ssh-action@v1.1.0
2022-08-26 13:20:57 +02:00
with:
# Proxy
2022-08-26 13:58:45 +02:00
proxy_host : ${{secrets.PROXY_HOST}}
proxy_port : ${{secrets.PROXY_PORT}}
proxy_username : ${{secrets.PROXY_USER}}
proxy_passphrase: ${{secrets.PROXY_PASSPHRASE}}
proxy_key: ${{secrets.PROXY_KEY}}
2022-08-26 13:20:57 +02:00
# Serveur web
2022-08-26 13:58:45 +02:00
host: ${{secrets.HOST}}
port : ${{secrets.PORT}}
username : ${{secrets.USER}}
key: ${{secrets.KEY}}
2022-08-26 16:39:49 +02:00
script_stop: true
# See https://github.com/ae-utbm/sith/wiki/GitHub-Actions#deployment-action
2022-08-26 13:58:45 +02:00
script: |
2024-10-15 12:32:40 +02:00
cd ${{secrets.SITH_PATH}}
2022-08-26 14:39:10 +02:00
2024-09-02 12:42:27 +02:00
git fetch
git reset --hard origin/master
2024-07-16 23:35:24 +02:00
poetry install --with prod --without docs,tests
npm install
poetry run ./manage.py install_xapian
2022-08-26 14:39:10 +02:00
poetry run ./manage.py migrate
2024-10-15 12:32:40 +02:00
poetry run ./manage.py collectstatic --clear --noinput
2022-08-26 14:39:10 +02:00
poetry run ./manage.py compilemessages
sudo systemctl restart uwsgi