Skip to content

Commit

Permalink
fix: replace pkill to script
Browse files Browse the repository at this point in the history
  • Loading branch information
RezenkovD committed Jan 24, 2024
1 parent d29a05b commit c526dbb
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,14 @@ jobs:
export ALLOWED_HOSTS='${{ secrets.ALLOWED_HOSTS }}'
export DOMAIN_NAME='${{ secrets.DOMAIN_NAME }}'
pkill -f "uvicorn main:app"
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
Expand Down

0 comments on commit c526dbb

Please sign in to comment.