Skip to content

add env setup

add env setup #3

Workflow file for this run

name: Deploy to github pages
on:
push:
branches:
- 'master'
env:
NODE_ENV: production
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- uses: pnpm/action-setup@v2
name: Install pnpm
with:
version: 8
run_install: false
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Prepare env
run: pnpm install
- name: Generate your content
run: npm run build
- name: Publish current build to GitHub Pages
uses: rayluo/[email protected]
with:
source-directory: ./dist/client
target-branch: gh-pages