Skip to content

Bump the development-dependencies group with 1 update (#53) #45

Bump the development-dependencies group with 1 update (#53)

Bump the development-dependencies group with 1 update (#53) #45

Workflow file for this run

name: CD
on:
push:
branches: [master]
concurrency: cd-${{ github.ref }}
jobs:
gh-pages:
runs-on: ubuntu-latest
steps:
- uses: P5-wrapper/setup-action@v1.0.6
with:
token: ${{ secrets.GH_TOKEN }}
- name: Build the demo application
run: pnpm --if-present build:demo
# - name: Deploy the demo application
# uses: JamesIves/github-pages-deploy-action@v4
# with:
# folder: dist/demo
npm:
runs-on: ubuntu-latest
steps:
- uses: P5-wrapper/setup-action@v1.0.6
with:
token: ${{ secrets.GH_TOKEN }}
- name: Build the components
run: pnpm build
- uses: JS-DevTools/npm-publish@v3
with:
access: "public"
token: ${{ secrets.NPM_TOKEN }}