Skip to content

Merge pull request #11 from zirreal/main #53

Merge pull request #11 from zirreal/main

Merge pull request #11 from zirreal/main #53

Workflow file for this run

name: Multi-Agent
on:
push:
branches: ['main']
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['20']
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Install packages
run: yarn install
- name: Run yarn build
run: yarn build
- name: Add .nojekyll file
run: touch dist/.nojekyll
- name: Deploy to gh-pages
uses: peaceiris/actions-gh-pages@v4
with:
publish_dir: ./dist
github_token: ${{ secrets.GITHUB_TOKEN }}