Skip to content

build: use private app instead of public bot in CI #6

build: use private app instead of public bot in CI

build: use private app instead of public bot in CI #6

Workflow file for this run

name: Make Documentation
on:
push:
branches: ["main"]
tags: ["*"]
defaults:
run:
shell: bash
permissions:
contents: write
jobs:
documentation:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
python-version: [ "3.x" ]
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/bootstrap-environ
id: bootstrap-environ
with:
python-version: ${{ matrix.python-version }}
runner: ${{ matrix.os }}
- name: Update the Changelog
run: |
make changelog
git push origin ${{ github.ref_name }}
- name: Build the Docs
run: make docs