mirror of
https://github.com/ClaperCo/Claper.git
synced 2025-12-29 00:25:02 +01:00
34 lines
964 B
YAML
34 lines
964 B
YAML
name: Publish doc
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
permissions:
|
|
contents: write
|
|
jobs:
|
|
build-and-deploy:
|
|
concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession.
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up Elixir
|
|
uses: erlef/setup-beam@988e02bfe678367a02564f65ca2e37726dc0268f
|
|
with:
|
|
elixir-version: '1.13.2'
|
|
otp-version: '24.1'
|
|
- name: Restore dependencies cache
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: deps
|
|
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
|
|
restore-keys: ${{ runner.os }}-mix-
|
|
- name: Install dependencies
|
|
run: mix deps.get
|
|
|
|
- name: Build doc
|
|
run: mix docs
|
|
|
|
- name: Deploy 🚀
|
|
uses: JamesIves/github-pages-deploy-action@v4
|
|
with:
|
|
folder: doc # The folder the action should deploy.
|