mirror of
https://github.com/exzork/gc-tools.git
synced 2024-11-21 14:48:33 +00:00
26 lines
596 B
YAML
26 lines
596 B
YAML
name: Deployment GC-Tools
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name : Checkout
|
|
uses: actions/checkout@v2
|
|
- name : Deploy Docker Using SSH
|
|
uses: appleboy/ssh-action@master
|
|
with:
|
|
host: ${{ secrets.HOST }}
|
|
username: ${{ secrets.USERNAME }}
|
|
key: ${{ secrets.KEY }}
|
|
port: ${{ secrets.PORT }}
|
|
script: |
|
|
cd ~/project/gc-tools/
|
|
git pull
|
|
docker-compose down
|
|
docker-compose build
|
|
docker-compose up -d |