Skip to content

New version 1.0.52

New version 1.0.52 #43

Workflow file for this run

name: GitHub Pages
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4 #Setup Node
with:
node-version-file: '.nvmrc'
- run: npm ci
- run: APIKEY=${{ secrets.APIKEY }} npm run build
- run: APIKEY=${{ secrets.APIKEY }} npm run examples
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v2
with:
path: ./dist/example
deploy:
needs: build
permissions:
pages: write # to deploy to Pages
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@v2