fix: consider DMs as voice channels #331
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Publish Documentation | |
| on: | |
| push: | |
| branches: [main] | |
| jobs: | |
| docs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository and submodules | |
| uses: actions/checkout@v3 | |
| with: | |
| submodules: recursive | |
| - uses: pnpm/[email protected] | |
| - name: Use Node.js LTS | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 22 | |
| cache: "pnpm" | |
| - name: Install packages | |
| run: pnpm install | |
| - name: Build | |
| run: pnpm run docs | |
| - name: Deploy | |
| uses: JamesIves/[email protected] | |
| with: | |
| branch: docs | |
| folder: docs |