-
Notifications
You must be signed in to change notification settings - Fork 12
38 lines (35 loc) · 1.11 KB
/
publish-release-docs.yml
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
name: Publish Release Docs
# Workflow Trigger
on:
# Triggers the workflow in the event there is a release created
release:
types: [published]
permissions:
contents: write
jobs:
deploy:
name: Build & Publish Docs
runs-on: ubuntu-latest
steps:
- name: Get the sources
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
fetch-depth: 0
- name: Install Python
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5
with:
python-version: 3.13.1
- name: Install Python Dependencies
run: pip install -r requirements.txt
working-directory: ./docs
- name: Install Required Libraries
run: |
sudo apt-get update
sudo apt-get install -y pngquant
- name: Configure Git
run: |
git config --global user.name "Build Server"
git config --global user.email "ci@cakeissues.net"
- name: Build & Publish
run: mike deploy --push --update-aliases ${{ github.event.release.tag_name }} latest
working-directory: ./docs