Skip to content

Merge pull request #1 from PezhmanGhavami/feature #36

Merge pull request #1 from PezhmanGhavami/feature

Merge pull request #1 from PezhmanGhavami/feature #36

Workflow file for this run

name: CD
on:
push:
branches: ["main"]
paths-ignore:
- "**/README.md"
- "**/LICENSE.txt"
jobs:
build:
runs-on: self-hosted
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- name: Setting env variables
run: |
touch .env
echo DATABASE_URL=${{ secrets.DATABASE_URL }} >> .env
echo SECRET_COOKIE_PASSWORD=${{ secrets.SECRET_COOKIE_PASSWORD }} >> .env
echo BASE_URL=${{ secrets.BASE_URL }} >> .env
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Installing dependencies
run: npm ci
- name: Installing sharp
run: npm i sharp
- name: Building a production version
run: npm run build
- name: Restarting the server
run: pm2 restart clothing-shop -s