Skip to content

Deploy

Deploy #126

Workflow file for this run

name: Deploy
on:
push:
branches: [master]
pull_request:
branches: [master]
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: Set Variables Data
env:
REACT_APP_FOLLOWERS_ACCESS_KEY: ${{ secrets.REACT_APP_FOLLOWERS_ACCESS_KEY }}
run: |
echo ${{ secrets.REACT_APP_FOLLOWERS_ACCESS_KEY }}
- name: Install dependencies
run: |
npm ci
- name: Install dependencies & Build website
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