forked from blizzthewolf/SeaCogs
feat(docs): automatically push docs to meli on commit
This commit is contained in:
parent
82effbb387
commit
a95e1e996f
1 changed files with 38 additions and 0 deletions
38
.forgejo/workflows/build-docs.yaml
Normal file
38
.forgejo/workflows/build-docs.yaml
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
name: Build Documentation
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
Build:
|
||||||
|
runs-on: docker
|
||||||
|
container: catthehacker/ubuntu:act-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
- name: Setup Node
|
||||||
|
uses: actions/setup-node@v1
|
||||||
|
with:
|
||||||
|
node-version: "12"
|
||||||
|
- name: Setup Python
|
||||||
|
uses: actions/setup-python@v4
|
||||||
|
with:
|
||||||
|
python-version: "3.11"
|
||||||
|
- name: Install Poetry
|
||||||
|
run: curl -sSL https://cdn.seaswimmer.cc/go/poetry | python3.11 -
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
export PATH="$HOME/.local/bin:$PATH"
|
||||||
|
poetry config virtualenvs.create false
|
||||||
|
poetry install --with docs --no-root
|
||||||
|
- name: Build the documentation
|
||||||
|
run: |
|
||||||
|
export PATH="$HOME/.local/bin:$PATH"
|
||||||
|
mkdocs build
|
||||||
|
- name: Deploy the documentation to Meli
|
||||||
|
run: |
|
||||||
|
npx -p "@getmeli/cli" meli upload ./site \
|
||||||
|
--url "http://pages.coastalcommits.com" \
|
||||||
|
--site "${{ variables.MELI_SITE }}" \
|
||||||
|
--token "${{ secrets.MELI_SITE_SECRET }}" \
|
||||||
|
--release "$GITEA_SHA"
|
||||||
|
env:
|
||||||
|
GITEA_TOKEN: ${{ secrets.COASTALCOMMITSTOKEN }}
|
Loading…
Reference in a new issue