Skip to content

chore(app): bump version to 1.1.1 #22

chore(app): bump version to 1.1.1

chore(app): bump version to 1.1.1 #22

Workflow file for this run

name: Deploy demo to GitHub Pages
on:
push:
branches: [main]
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
cache-dependency-path: website/package-lock.json
- name: Install deps
run: npm ci
working-directory: website
- name: Build
run: npm run build
working-directory: website
- uses: actions/configure-pages@v4
- uses: actions/upload-pages-artifact@v3
with:
path: website/dist
- uses: actions/deploy-pages@v4
id: deployment