Skip to content

Add social preview meta tags, Google Analytics, favicon (#159) #5

Add social preview meta tags, Google Analytics, favicon (#159)

Add social preview meta tags, Google Analytics, favicon (#159) #5

Workflow file for this run

name: Deploy wasm demo to Pages
on:
push:
branches: [master]
paths:
- web/**
- .github/workflows/pages.yml
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c # v4.2.0
- name: Build bb.wasm and assemble the static site
run: docker buildx build -f web/Dockerfile --output type=local,dest=web/dist .
- uses: actions/upload-pages-artifact@fc324d3547104276b827a68afc52ff2a11cc49c9 # v5.0.0
with:
path: web/dist
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- id: deployment
uses: actions/deploy-pages@cd2ce8fcbc39b97be8ca5fce6e763baed58fa128 # v5.0.0