new version #3
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
name: Build and Deploy Discord Bot | ||
on: | ||
push: | ||
branches: | ||
- main # Change if you're using a different branch | ||
jobs: | ||
build-deploy: | ||
runs-on: ubuntu-latest | ||
- name: Trigger deploy script on server via SSH | ||
uses: appleboy/[email protected] | ||
with: | ||
host: ${{ secrets.PROD_SERVER_HOST }} | ||
username: ${{ secrets.PROD_SERVER_USER }} | ||
key: ${{ secrets.PROD_SERVER_SSH_KEY }} | ||
script: | | ||
~/deploy_app.sh |