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