Skip to content

Bump undici from 5.28.2 to 5.28.3 in /functions (#68) #251

Bump undici from 5.28.2 to 5.28.3 in /functions (#68)

Bump undici from 5.28.2 to 5.28.3 in /functions (#68) #251

Workflow file for this run

name: Deploy
on:
push:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup NodeJS
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'
- name: Install
run: |
npm ci
npm install -g gatsby-cli
- name: Build
run: gatsby build --prefix-paths
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public
publish_branch: gh-pages