Skip to content

update dependency of tm-textarea to latest release #14

update dependency of tm-textarea to latest release

update dependency of tm-textarea to latest release #14

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main # or the branch you want to trigger the deployment from
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Build project
run: pnpm build
- name: Build dev
run: pnpm build:dev
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dev/dist # Adjust if your build output directory is different
publish_branch: gh-pages # Specify the branch to deploy to