Skip to content

Blog Deploy

Blog Deploy #2

Workflow file for this run

name: Blog Deploy
run-name: Blog Deploy
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
- run: |
git config --global user.name "Jonny-Cho"
git config --global user.email "[email protected]"
npm ci
npm run deploy