Skip to content

Fix file path.

Fix file path. #4

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install packages
run: npm ci
- name: Run tests
run: npm test
- name: Build website
run: npm run build -- --public-url ./
env:
REPOSITORY_URL: https://raw.githubusercontent.com/${{ github.repository }}/main
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: dist
deploy:
if: github.ref_name == 'main'
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
permissions:
contents: read
pages: write
id-token: write
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2