Skip to content

Enhance StreamingMarkdownElement to consume initial child content on … #6

Enhance StreamingMarkdownElement to consume initial child content on …

Enhance StreamingMarkdownElement to consume initial child content on … #6

Workflow file for this run

name: Deploy GitHub Pages
on:
push:
branches: [ master ]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install
run: bun install --no-progress
- name: Build component
run: bun run build
- name: Copy dist to docs
run: |
mkdir -p docs/dist
cp -r dist/* docs/dist/
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: docs
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4