Skip to content

Merge pull request #34 from ymrl/add_type_button #32

Merge pull request #34 from ymrl/add_type_button

Merge pull request #34 from ymrl/add_type_button #32

Workflow file for this run

name: Deploy GitHub pages
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install NPM packages
run: npm ci
- name: Build Next.js app
run: npm run build
env:
URL_PREFIX: a11y-training
- name: Export Next.js app
run: npm run export
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: out