Skip to content

feat: add missing GCCs (12, 13, 14, 15) and fix minor output bug for … #35

feat: add missing GCCs (12, 13, 14, 15) and fix minor output bug for …

feat: add missing GCCs (12, 13, 14, 15) and fix minor output bug for … #35

Workflow file for this run

name: Deploy Github Pages
on:
push:
branches:
- main
jobs:
deploy-pages:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Install and build
run: |
cd web
npm install
npm run build
cd ..
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: web/dist # The folder the action should deploy.
CLEAN: true # Automatically remove deleted files from the deploy branch