Skip to content

Commit

Permalink
fix: remove kill from cd
Browse files Browse the repository at this point in the history
  • Loading branch information
RezenkovD committed Jan 24, 2024
1 parent 5b85eac commit 44957bf
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,15 +167,6 @@ jobs:
export ALLOWED_HOSTS='${{ secrets.ALLOWED_HOSTS }}'
export DOMAIN_NAME='${{ secrets.DOMAIN_NAME }}'
uvicorn_pid=$(pgrep -f "uvicorn main:app")
if [ -n "$uvicorn_pid" ]; then
echo "Stopping uvicorn process..."
kill -15 "$uvicorn_pid" # Send SIGTERM
else
echo "No uvicorn process running."
fi
git pull
pip3 install -r requirements.txt
alembic upgrade head
Expand Down

0 comments on commit 44957bf

Please sign in to comment.