Skip to content

feat(Messages): Change message editing method to update() (#241) #7

feat(Messages): Change message editing method to update() (#241)

feat(Messages): Change message editing method to update() (#241) #7

Workflow file for this run

name: Docs
on:
push:
branches:
- main
workflow_dispatch:
workflow_call:
jobs:
build-and-publish:
name: Build and Publish Docs
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
env:
POETRY_VIRTUALENVS_CREATE: false
steps:
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- uses: Gr1N/setup-poetry@v9
- uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
- name: Install Dependencies
run: |
poetry self add "poetry-dynamic-versioning[plugin]"
poetry install --no-root --only=docs
- name: Build Package
run: poetry build
- name: Install Package
run: pip install dist/*.whl
- name: Build & Publish Docs
uses: sphinx-notes/pages@v3
with:
checkout: false