Skip to content

3.4.1

3.4.1 #20

name: Build and Deploy
on:
push:
tags:
- v*
permissions:
contents: write
id-token: write
jobs:
build-and-deploy:
runs-on: ubuntu-latest
environment: deploy
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- name: Use Node.js 😂
uses: actions/setup-node@v4
with:
node-version: 24
registry-url: 'https://registry.npmjs.org'
- name: Install and Build 🔧
run: |
npm ci
npm run build-ci
npm publish
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: .