-
Notifications
You must be signed in to change notification settings - Fork 43
64 lines (62 loc) · 2.18 KB
/
docs.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name: Maybe generate docs
on:
push:
branches:
- main
jobs:
docs:
name: Generate docs upon new release
runs-on: ubuntu-latest
container: hexpm/elixir:1.15.0-erlang-26.0.1-alpine-3.18.2
env:
FLAVOUR: classic
FLAVOUR_PATH: flavours/classic
MIX_ENV: dev
WITH_DOCKER: no
CI: true
EXQLITE_USE_SYSTEM: 1
EXQLITE_SYSTEM_CFLAGS: -I/usr/include
EXQLITE_SYSTEM_LDFLAGS: -L/lib -lsqlite3
steps:
-
name: Install bash (needed for just), git (needed for checkout), tar (needed for cache), file (needed for bonfire_files), make/build-base/sqlite/graphviz (for arch), and just
run: apk add bash git tar file make build-base sqlite graphviz just
-
name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 2 # needed for action-detect-and-tag-new-version
# - # FIXME
# name: Detect new version
# id: version
# uses: salsify/action-detect-and-tag-new-version@v2
# with:
# version-command: |
# grep -m 1 'version:' mix.exs | cut -d '"' -f2
# -
# if: steps.version.outputs.current-version == steps.version.outputs.previous-version
# name: Cancel workflow if the version has not changed
# uses: andymckay/[email protected]
- name: Trust my repo
run: export GIT_CEILING_DIRECTORIES=/__w && git config --global --add safe.directory /__w/bonfire-app/bonfire-app # see https://github.com/actions/checkout/issues/760
- name: Install hex
run: mix local.hex --force
- name: Install rebar
run: mix local.rebar --force
- name: Prepare environment
run: just pre-setup && just init
- name: Install dependencies
run: mix deps.get
-
name: Generate docs
run: just docs
# -
# name: Generate arch reports
# run: just arch && mv reports/dev/static/html ./docs/exdoc/arch
-
name: Deploy docs
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/exdoc
cname: doc.bonfirenetworks.org