make root_dir, env_dir configurable #22
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", "staging" ] | ||
pull_request: | ||
branches: [ "main", "staging" ] | ||
jobs: | ||
build: | ||
environment: ${{ github.ref_name }} | ||
name: "Deploy to ${{ github.ref_name }}" | ||
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/server.key | ||
chmod 600 ~/.ssh/server.key | ||
cat >>~/.ssh/config <<END | ||
Host server | ||
HostName $SSH_HOST | ||
User $SSH_USER | ||
IdentityFile ~/.ssh/server.key | ||
StrictHostKeyChecking no | ||
END | ||
- name: Deploy to Server | ||
run: | | ||
Check failure on line 32 in .github/workflows/django.yml GitHub Actions / Django CIInvalid workflow file
|
||
ssh server ' | ||
cd ${{ ROOT_DIR }} && | ||
git pull origin main && | ||
source ${{ ENV_DIR }}bin/activate && | ||
pip install -r requirements/production.txt && | ||
python manage.py migrate --settings=config.settings.production && | ||
python manage.py collectstatic --noinput --settings=config.settings.production && | ||
supervisorctl restart django | ||
' |