Skip to content

Merge branch 'prototypsthlm-feat/chat' #114

Merge branch 'prototypsthlm-feat/chat'

Merge branch 'prototypsthlm-feat/chat' #114

Workflow file for this run

name: Publish to Github Pages
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
on:
push:
branches: ['main']
# Publish semver tags as releases.
tags: ['v*.*.*']
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v2
- name: Install dependencies
run: npm install
- name: Git user config
run: git config --global user.email "[email protected]"
- name: Git user config
run: git config --global user.name "ghpages bot"
- name: Publish to Github Pages
run: npm run deploy