Skip to content

Clarify ChannelCache is only for off-guild channels #225

Clarify ChannelCache is only for off-guild channels

Clarify ChannelCache is only for off-guild channels #225

Workflow file for this run

name: Publish Docs
on:
push:
branches:
- master
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
with:
otp-version: '24'
elixir-version: '1.13'
- uses: actions/cache@v2
with:
path: deps
key: ${{ runner.os }}-mix-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}
restore-keys: ${{ runner.os }}-mix-
- run: mix deps.get
name: Fetch Dependencies
- run: mix docs
name: Build Docs
- uses: JamesIves/github-pages-deploy-action@3.7.1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: doc
CLEAN: true
name: Deploy Github Pages