Skip to content

Style Followers data #59

Style Followers data

Style Followers data #59

Workflow file for this run

name: Deploy
on:
push:
branches: [master]
pull_request:
branches: [master]
# paths: [documentation/**]
jobs:
deploy:
name: Deploy to GitHub Pages
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
# Needed for showLastUpdateTime to work
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
# cache: npm
- name: Install dependencies & Build website
# working-directory: documentation
run: |
cd documentation
npm ci
npm run build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./documentation/build
user_name: github-actions[bot]
user_email: 41898282+github-actions[bot]@users.noreply.github.com