Skip to content

Add aidbox-forms smart app launch demo #12

Add aidbox-forms smart app launch demo

Add aidbox-forms smart app launch demo #12

Workflow file for this run

name: Publish to GitHub Pages
on:
push:
branches:
- main
permissions:
contents: write
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
- name: Install Dependencies
run: |
cd aidbox-forms-smart-launch
npm install
- name: Build
run: |
cd aidbox-forms-smart-launch
npm run build -- --base=/examples/aidbox-forms-smart-launch
- name: Prepare for deployment
run: |
cd aidbox-forms-smart-launch
find . -mindepth 1 -maxdepth 1 ! -name 'dist' -exec rm -rf {} \;
mv dist/* .
rm -rf dist
- name: Publish
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: .