🪶 chore: Update deploy-prod.yml #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: Deploy on production server | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
name: Deploy production build | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: [21.x] | |
steps: | |
- name: Deploying | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.SERVER_HOST }} | |
username: ${{ secrets.SERVER_USER }} | |
password: ${{ secrets.SERVER_PASSWORD }} | |
script: | | |
set -e | |
export NVM_DIR="$HOME/.nvm" # Export NVM | |
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" | |
# Change directory to project directory | |
cd mcdata-api | |
# Pull newest code | |
git pull | |
# Install newest dependencies | |
yarn install --frozen-lockfile | |
# Build production code | |
yarn build | |
# Restart process manager | |
pm2 restart "mcdata-api" |