-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (28 loc) · 745 Bytes
/
docs.yml
File metadata and controls
30 lines (28 loc) · 745 Bytes
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
name: Coral Core - Docs
on:
push:
branches:
- main
jobs:
build_and_push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Set up Poetry
uses: abatilo/actions-poetry@v2.0.0
with:
poetry-version: 1.1.13
- name: Install dependencies
run: poetry install
- name: Build And Commit Site
run: |
poetry run mkdocs build
git config user.name github-actions
git config user.email github-actions@github.com
git add site
git commit -m "ci: build and commit documentation"
git push