mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-18 12:13:24 +00:00
32 lines
762 B
YAML
32 lines
762 B
YAML
name: Deploy to production
|
|
|
|
on:
|
|
push:
|
|
branches: [ actions ]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
deployment:
|
|
runs-on: ubuntu-latest
|
|
environment: production
|
|
|
|
steps:
|
|
- name: SSH Remote Commands
|
|
uses: appleboy/ssh-action@dce9d565de8d876c11d93fa4fe677c0285a66d78
|
|
with:
|
|
# Proxy
|
|
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}}
|
|
|
|
# Serveur web
|
|
host: ${{secrets.HOST}}
|
|
port : ${{secrets.PORT}}
|
|
username : ${{secrets.USER}}
|
|
key: ${{secrets.KEY}}
|
|
|
|
script: |
|
|
whoami
|
|
ls -al |