Skip to content

final command to restart nginx to the deploy workflow #11

final command to restart nginx to the deploy workflow

final command to restart nginx to the deploy workflow #11

Workflow file for this run

name: Deploy React App
on:
push:
branches:
- dev # Adjust this to your main branch
jobs:
deploy:
runs-on: self-hosted
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: "18.17.1" # Adjust this to your required Node version
- name: Install Pnpm
run: npm install -g pnpm
- name: Install dependencies
run: pnpm install
- name: Build project
run: NODE_OPTIONS="--max-old-space-size=4096" pnpm run build
- name: Postbuild project
run: pnpm run postbuild
- name: Deploy to server
run: |
rm -rf /var/www/INSIGHTS/dist/*
cp -r ./dist/* /var/www/INSIGHTS/dist
sudo systemctl restart nginx