add workflows for automatic deployment

This commit is contained in:
muhammadeko 2022-05-06 06:52:03 +07:00
parent b5fb66d917
commit 23402e8e02
No known key found for this signature in database
GPG Key ID: 51366716C10E98B1

25
.github/workflows/main.yml vendored Normal file
View File

@ -0,0 +1,25 @@
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/
docker-compose down
docker-compose build
docker-compose up -d