Skip to content

Improving contact form, styling links #39

Improving contact form, styling links

Improving contact form, styling links #39

Workflow file for this run

name: Deploy to Digital Ocean
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: "20"
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Deploy
uses: appleboy/scp-action@master
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.PRIVATE_KEY }}
source: "./"
target: "/var/www/forage-abq-next"
- name: Restart PM2 process
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.PRIVATE_KEY }}
script: |
source ~/.nvm/nvm.sh
cd /var/www/forage-abq-next
nvm use 20
pm2 restart all