Skip to content

feat: fix capital P in Player #25

feat: fix capital P in Player

feat: fix capital P in Player #25

Workflow file for this run

name: AWS Deploy
on:
workflow_dispatch:
push:
branches: ["main"]
jobs:
build:
runs-on: self-hosted
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set node version
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
- name: Set pnpm version
uses: pnpm/action-setup@v3
with:
run_install: false
version: 7
- name: Cache node_modules
id: node-modules-cache
uses: actions/cache@v3
with:
path: "**/node_modules"
key: node-modules-cache-${{ hashFiles('**/pnpm-lock.yaml') }}
- name: Install dependencies
run: pnpm install --no-frozen-lockfile
- name: Cache build
uses: actions/cache@v4
with:
path: |
~/.npm
${{ github.workspace }}/.next/cache
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/pnpm-lock.yaml') }}-${{ hashFiles('**/*.js', '**/*.jsx', '**/*.ts', '**/*.tsx') }}
restore-keys: |
${{ runner.os }}-nextjs-${{ hashFiles('**/pnpm-lock.yaml') }}-
- name: Build project
run: pnpm build
- name: Restart systemd services
run: sudo systemctl restart zs-docs