Skip to content

✨ Add option to scroll message into view #33

✨ Add option to scroll message into view

✨ Add option to scroll message into view #33

Workflow file for this run

name: Publish service
on:
push:
branches: [ master ]
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Publish
run: |
wget https://github.com/tmijs/tmi.js/releases/download/v1.8.5/tmi.min.js -O ./html/tmi.min.js
mv ./html ./docs
git config user.email git@github.com
git config user.name 'GitHub Actions'
git add .
git commit -m 'publish site'
git push -f -u origin master:gh-pages