β Build π 19-10-2023 β¨ #417
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# FansubID ~ Fansub Indonesia | |
name: Re-Deploy γΌ SSH | |
on: | |
push: | |
branches: [ "master" ] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: SSH γΌ RCE | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.HOST }} | |
username: ${{ secrets.USERNAME }} | |
password: ${{ secrets.PASSWORD }} | |
port: ${{ secrets.PORT }} | |
script: | | |
sudo pm2 stop fansubid | |
cd ~/www/fansubid | |
git pull | |
npm install | |
sudo pm2 restart fansubid | |
sudo systemctl reload nginx |