Skip to content

Merge pull request #39 from ymrl/update_packages #37

Merge pull request #39 from ymrl/update_packages

Merge pull request #39 from ymrl/update_packages #37

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@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'npm'
- name: Install NPM packages
run: npm ci
- name: Build Next.js app
run: npm run build
env:
URL_PREFIX: a11y-training
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: out