From b4199795dd3723d12388369516e973973ee5959e Mon Sep 17 00:00:00 2001 From: fritz-astronomer <80706212+fritz-astronomer@users.noreply.github.com> Date: Wed, 13 Nov 2024 16:27:59 -0500 Subject: [PATCH] Deploy Docs via CICD (#30) * cicd: deploy docs via cicd * misc: bump version --- .github/workflows/deploy.yml | 3 +++ orbiter/__init__.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b410a67..03e5f2a 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -39,6 +39,9 @@ jobs: orbiter-* name: binary-${{ matrix.os }} retention-days: 5 + - run: just deploy-docs + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} gh_release: needs: build diff --git a/orbiter/__init__.py b/orbiter/__init__.py index ccaad88..2d32881 100644 --- a/orbiter/__init__.py +++ b/orbiter/__init__.py @@ -3,7 +3,7 @@ import re from typing import Any, Tuple -__version__ = "1.3.0" +__version__ = "1.3.1" version = __version__