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: Deploy to Lightsail | |
on: | |
push: | |
branches: | |
- main # Set this to your default branch | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: npm install | |
- name: Deploy to Lightsail | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.LIGHTSAIL_HOST }} | |
username: ${{ secrets.LIGHTSAIL_USERNAME }} | |
key: ${{ secrets.LIGHTSAIL_SSH_KEY }} | |
port: 22 # Default SSH port; change it if yours is different | |
script: | | |
cd /opt/bitnami/apache2/htdocs | |
sudo rm -r * | |
sudo git clone https://github.com/huziibee/aws-b-app-1.git | |
cd aws-b-app-1 | |
sudo npm install | |
forever start server.js |