add commands #17
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Django CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
environment: production | |
name: "Deploy to production" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Configure SSH | |
env: | |
SSH_USER: ${{ secrets.SSH_USER }} | |
SSH_KEY: ${{ secrets.SSH_KEY }} | |
SSH_HOST: ${{ secrets.SSH_HOST }} | |
run: | | |
mkdir -p ~/.ssh/ | |
echo "$SSH_KEY" > ~/.ssh/production.key | |
chmod 600 ~/.ssh/production.key | |
cat >>~/.ssh/config <<END | |
Host production | |
HostName $SSH_HOST | |
User $SSH_USER | |
IdentityFile ~/.ssh/production.key | |
StrictHostKeyChecking no | |
END | |
- name: Deploy to Server | |
run: | | |
ssh production ' | |
cd /home/django/bakeup/ && | |
git pull origin main && | |
source /home/django/djangoenv/bin/activate && | |
pip install -r requirements/production.txt && | |
python manage.py migrate && | |
python collectstatic --noinput && | |
supervisorctl restart django | |
' |