Skip to content

[exoframe-website] Document traefik config & dashboard settings #8

[exoframe-website] Document traefik config & dashboard settings

[exoframe-website] Document traefik config & dashboard settings #8

Workflow file for this run

name: Website to Github pages
# deploy website to github pages on push
on:
# Runs on pushes targeting the default branch
push:
branches: 'main'
# Allows us to run this workflow manually from the Actions tab
workflow_dispatch:
# Set permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
jobs:
deploy-website:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- name: install
run: npm ci
- name: build
run: npm run build -w exoframe-website
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: packages/exoframe-website/build
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2