Sith/.github/workflows/deploy.yml

32 lines
720 B
YAML
Raw Normal View History

name: Deploy to production
on:
2022-08-26 11:20:57 +00:00
push:
branches: [ actions ]
workflow_dispatch:
jobs:
2022-08-26 11:26:41 +00:00
deployment:
runs-on: ubuntu-latest
2022-08-26 11:26:41 +00:00
environment: production
steps:
2022-08-26 11:20:57 +00:00
- name: SSH Remote Commands
uses: appleboy/ssh-action@v0.1.5
with:
# Proxy
proxy_host : ${{secrets.PROXY_HOST}}
proxy_port : ${{secrets.PROXY_PORT}}
2022-08-26 11:43:13 +00:00
proxy_username : ${{secrets.PROXY_USER}}
2022-08-26 11:20:57 +00:00
proxy_passphrase: ${{secrets.PROXY_PASSPHRASE}}
proxy_key: ${{secrets.PROXY_KEY}}
# Serveur web
host: ${{secrets.HOST}}
port : ${{secrets.PORT}}
2022-08-26 11:43:13 +00:00
username : ${{secrets.USER}}
2022-08-26 11:20:57 +00:00
key: ${{secrets.KEY}}
2022-08-26 11:48:40 +00:00
debug: true
2022-08-26 11:20:57 +00:00
script: whoami