Skip to content

fix: htmx extension meta tag merge #33

fix: htmx extension meta tag merge

fix: htmx extension meta tag merge #33

Workflow file for this run

name: Deploy
on:
push:
branches: ["master"]
jobs:
build:
name: Deploy
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
cache: "yarn"
- name: Install dependencies
uses: borales/actions-yarn@v4
with:
cmd: install
- name: Generate static html
uses: borales/actions-yarn@v4
with:
cmd: build
env:
BASE_URL: "/adwave-docs/"
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: ./docs
retention-days: 90
- name: Deploy
id: deployment
uses: actions/deploy-pages@v2