Skip to content

First try to build and publish a built version of the tool via GitHub… #1

First try to build and publish a built version of the tool via GitHub…

First try to build and publish a built version of the tool via GitHub… #1

Workflow file for this run

name: Build and Deploy to GitHub Pages
on:
push:
branches:
- reproducability
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install Dependencies
run: npm install
- name: Build Project
run: npm run build-web
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./html