Skip to content

Add privacy policy (#24) #65

Add privacy policy (#24)

Add privacy policy (#24) #65

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- master
permissions:
contents: write
jobs:
build-and-deploy:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Install and Build 🔧
uses: actions/setup-node@v3
with:
node-version: 20
cache: yarn
- run: yarn install --immutable --immutable-cache --check-cache
- run: yarn build
- run: touch ./out/.nojekyll
env:
CI: true
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: out
branch: gh-pages
clean: true