Skip to content

Update Cake.Codecov to 3.0.1 (#1395) #506

Update Cake.Codecov to 3.0.1 (#1395)

Update Cake.Codecov to 3.0.1 (#1395) #506

name: Publish Develop Docs
# Workflow Trigger
on:
# Triggers the workflow in the event there is a push to develop
push:
branches:
- develop
permissions:
contents: write
jobs:
deploy:
name: Build & Publish Docs
runs-on: ubuntu-latest
steps:
- name: Get the sources
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
lfs: true
fetch-depth: 0
- name: Install Python
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
with:
python-version: 3.14.2
- 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 "[email protected]"
- name: Build & Publish
run: mike deploy --push develop
working-directory: ./docs