Skip to content

docs: update CHANGELOG to mention manual_painted column in CSV export #154

docs: update CHANGELOG to mention manual_painted column in CSV export

docs: update CHANGELOG to mention manual_painted column in CSV export #154

name: Build and deploy Vite site
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm # optional caching
- name: Install dependencies
run: npm ci
- name: Build Vite site
env:
VITE_GITHUB_REPO_NAME: ${{ github.event.repository.name }}
VITE_SITE_URL: https://${{ github.repository_owner }}.github.io/${{ github.event.repository.name }}/
run: npm run build
# Upload the dist folder produced by Vite
- name: Upload static files as artifact
uses: actions/upload-pages-artifact@v3
with:
path: dist/
deploy:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4