Skip to content

Merge pull request #899 from hngprojects/server/hot-fix #7

Merge pull request #899 from hngprojects/server/hot-fix

Merge pull request #899 from hngprojects/server/hot-fix #7

Workflow file for this run

name: Dev Deployment
on:
push:
branches: [dev]
paths-ignore:
- "README.md"
- ".github/workflows/**"
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Use SSH Action
uses: appleboy/[email protected]
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
password: ${{ secrets.PASSWORD }}
script: |
cd hng_boilerplate_python_fastapi_web
# git add .
# git stash
# git checkout dev
# git pull origin dev
source venv-dev/bin/activate
pip install -r requirements.txt
alembic upgrade head
echo "${{ secrets.PASSWORD }}" | sudo -S systemctl restart python-bp-dev.service