Skip to content

💄add flag to !speak command #22

💄add flag to !speak command

💄add flag to !speak command #22

name: Deploy
on:
push:
branches:
- main
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
env:
VITE_CLIENT_ID: ${{ secrets.VITE_CLIENT_ID }}
VITE_REDIRECT_URI: https://chrisvdev.github.io/obs-chat
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Install Dependencies
run: pnpm install
- name: Build
run: pnpm run build --base=/obs-chat/
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist