diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/main.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3c7b658c..b836c178 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -4,7 +4,12 @@ jobs: deploy: runs-on: "self-hosted" steps: + - name: Run Deployment Script - run: | chmod +x /home/ubuntu/deploy.sh /home/ubuntu/deploy.sh + shell: bash + - name: Start Gunicorn + - run: | + cd /home/ubuntu/thatcomputerscientist && gunicorn --bind :8000 --workers 2 thatcomputerscientist.wsgi --daemon shell: bash
\ No newline at end of file |
