Merge pull request #10 from PezhmanGhavami/fix/text-fix #45
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: 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 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 my-portfolio -s |