Skip to content

Bump micromatch from 4.0.5 to 4.0.8 (#149) #77

Bump micromatch from 4.0.5 to 4.0.8 (#149)

Bump micromatch from 4.0.5 to 4.0.8 (#149) #77

Workflow file for this run

name: Site Deployment
on:
push:
branches:
- master
jobs:
build:
name: Deploy
runs-on: ubuntu-latest
steps:
- name: Checkout master
uses: actions/checkout@v2
- name: Configure Git
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Actions Deployment"
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 20
- name: Install Node.js Dependencies
run: npm ci
- name: Build Site
run: npm run build
- name: Deploy
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: build