2024-09-23 08:25:27 +00:00
|
|
|
name: Sith taiste
|
2022-10-27 23:41:53 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2023-09-19 20:17:26 +00:00
|
|
|
branches: [taiste]
|
2023-09-19 20:04:46 +00:00
|
|
|
workflow_dispatch:
|
2022-10-27 23:41:53 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
deployment:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
environment: taiste
|
|
|
|
timeout-minutes: 30
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: SSH Remote Commands
|
|
|
|
uses: appleboy/ssh-action@dce9d565de8d876c11d93fa4fe677c0285a66d78
|
|
|
|
with:
|
|
|
|
# Proxy
|
|
|
|
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}}
|
|
|
|
|
|
|
|
# Serveur web
|
|
|
|
host: ${{secrets.HOST}}
|
|
|
|
port : ${{secrets.PORT}}
|
|
|
|
username : ${{secrets.USER}}
|
|
|
|
key: ${{secrets.KEY}}
|
|
|
|
|
|
|
|
script_stop: true
|
|
|
|
|
2024-09-22 23:37:25 +00:00
|
|
|
# See https://github.com/ae-utbm/sith/wiki/GitHub-Actions#deployment-action
|
2022-10-27 23:41:53 +00:00
|
|
|
script: |
|
|
|
|
export PATH="$HOME/.poetry/bin:$PATH"
|
|
|
|
pushd ${{secrets.SITH_PATH}}
|
|
|
|
|
2024-09-02 10:42:27 +00:00
|
|
|
git fetch
|
|
|
|
git reset --hard origin/taiste
|
2024-07-16 21:35:24 +00:00
|
|
|
poetry install --with prod --without docs,tests
|
2024-09-17 21:42:05 +00:00
|
|
|
npm install
|
2024-07-04 17:44:22 +00:00
|
|
|
poetry run ./manage.py install_xapian
|
2022-10-27 23:41:53 +00:00
|
|
|
poetry run ./manage.py migrate
|
2024-09-17 21:42:05 +00:00
|
|
|
poetry run ./manage.py collectstatic --clear --clear-generated --noinput
|
2022-10-27 23:41:53 +00:00
|
|
|
poetry run ./manage.py compilemessages
|
|
|
|
|
|
|
|
sudo systemctl restart uwsgi
|