Skip to content

Merge pull request #202 from SELab-2/development #7

Merge pull request #202 from SELab-2/development

Merge pull request #202 from SELab-2/development #7

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Deploy
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.SSH_KEY }}
port: ${{ secrets.PORT }}
script: |
cd UGent-7
docker-compose -f production.yml down
git pull
docker-compose -f production.yml build --no-cache
docker-compose -f production.yml up -d