Skip to content

feat(contents): add stats for presence #13

feat(contents): add stats for presence

feat(contents): add stats for presence #13

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- main
tags:
- 'v*.*.*'
repository_dispatch:
types:
- publish-event
jobs:
build-and-deploy:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Cache
uses: actions/cache@v3
with:
path: ${{ github.workspace }}/.next/cache
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build
env:
CI: true
NODE_ENV: production
- name: Deploy
uses: JamesIves/github-pages-deploy-action@4.0.0
with:
branch: gh-pages
folder: out