Skip to content

fix: update meta tags? #94

fix: update meta tags?

fix: update meta tags? #94

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
# for future expansion, for now only node 16 is supported
node: [22.x]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node, install dependencies, and cache node modules, build dist artifacts
uses: ./.github/build-artifacts
with:
node-version: ${{ matrix.node }}
deploy:
needs: build
runs-on: ubuntu-latest
strategy:
matrix:
# for future expansion, for now only node 16 is supported
node: [22.x]
steps:
- name: Checkout
uses: actions/checkout@v3
# Set up GitHub Actions caching for Wireit.
- uses: google/wireit@setup-github-actions-caching/v2
- name: Get the build
uses: ./.github/build-artifacts
with:
node-version: ${{ matrix.node }}
- name: Deploy to GitHub Pages
uses: JamesIves/[email protected]
with:
branch: gh-pages # The branch the action should deploy to.
folder: dist/samples/browser # The folder the action should deploy.