Skip to content

Add correct arxiv link #41

Add correct arxiv link

Add correct arxiv link #41

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: SAMURAI Deploy
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches:
- main
paths:
- "**"
pull_request:
branches:
- main
paths:
- "**"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v2
- uses: actions/cache@v2
id: cache
with:
path: ./node_modules
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: yarn --frozen-lockfile --network-concurrency 1
- name: Build Remix
run: yarn build
- name: Build Static
run: yarn build_static
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
personal_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public