feat(chat): hide unlisted 7tv emotes by default #19
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
| on: | |
| push: | |
| branches: | |
| - main | |
| - stage | |
| - dev | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| name: Deploy to CF Pages | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build a deploy in `dist` | |
| run: | | |
| mkdir ./dist | |
| cp -r -t ./dist \ | |
| img/ styles/ favicon.ico index.html script.js \ | |
| jquery.min.js purify.min.js | |
| mkdir ./dist/v2 | |
| cp -r -t ./dist/v2/ \ | |
| v2/badges/ v2/control/ v2/styles/ v2/*.min.js v2/irc-message.js v2/script.js v2/tinycolor.js v2/*.html | |
| - name: Deploy | |
| uses: cloudflare/wrangler-action@v3 | |
| with: | |
| apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
| accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | |
| command: pages deploy ./dist --project-name="chatis-v2" --branch="${{ github.ref_name }}" |