Skip to content

Merge pull request #301 from ComSSA/update-committee-2026 #182

Merge pull request #301 from ComSSA/update-committee-2026

Merge pull request #301 from ComSSA/update-committee-2026 #182

Workflow file for this run

name: deploy to github pages
on:
push:
branches:
- main
jobs:
cd:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [14]
steps:
- name: Checkout
uses: actions/checkout@master
- name: Setup node env
uses: actions/setup-node@v2.1.2
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: yarn
- name: Generate
run: yarn build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3.7.3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist