Sith/.github/workflows/deploy.yml
2022-08-26 13:20:57 +02:00

29 lines
677 B
YAML

name: Deploy to production
on:
push:
branches: [ actions ]
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: SSH Remote Commands
uses: appleboy/ssh-action@v0.1.5
with:
# Proxy
proxy_host : ${{secrets.PROXY_HOST}}
proxy_port : ${{secrets.PROXY_PORT}}
proxy_username : ${{secrets.PROXY_USERNAME}}
proxy_passphrase: ${{secrets.PROXY_PASSPHRASE}}
proxy_key: ${{secrets.PROXY_KEY}}
# Serveur web
host: ${{secrets.HOST}}
port : ${{secrets.PORT}}
username : ${{secrets.USERNAME}}
key: ${{secrets.KEY}}
script: whoami