Skip to content

fix: theme syntax highlighting in message input box (#302) #207

fix: theme syntax highlighting in message input box (#302)

fix: theme syntax highlighting in message input box (#302) #207

Workflow file for this run

name: GitHub Pages
on:
workflow_dispatch:
push:
branches:
- main
paths:
- 'src/**'
jobs:
deploy:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "yarn"
- run: yarn install
- run: yarn release
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist/
user_name: "github-actions[bot]"
user_email: "github-actions[bot]@users.noreply.github.com"