Skip to content

Merge pull request #1 from pr0-dev/dependabot/composer/guzzlehttp/psr… #13

Merge pull request #1 from pr0-dev/dependabot/composer/guzzlehttp/psr…

Merge pull request #1 from pr0-dev/dependabot/composer/guzzlehttp/psr… #13

Workflow file for this run

name: Deploy
# Trigger the workflow on push and
# pull request events on the production branch
on:
push:
branches:
- master
# Authenticate to the the server via ssh
# and run our deployment script
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Deploy to server
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
port: ${{ secrets.PORT }}
key: ${{ secrets.SSHKEY }}
script: "cd /var/www/dev.pr0verter.de && ./.scripts/deploy.sh"