From 896dfe14015dbad3622d66bcca7020ed8663caa5 Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Mon, 3 Apr 2023 16:59:16 +0100 Subject: [PATCH] Fix release doc build (#568) This PR fixes the automated release documentation build. --- .github/workflows/update-gh-pages-on-release.yml | 2 +- CHANGES.rst | 14 ++++++++++++++ pyproject.toml | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update-gh-pages-on-release.yml b/.github/workflows/update-gh-pages-on-release.yml index 2d8a8cdd..d53ef61b 100644 --- a/.github/workflows/update-gh-pages-on-release.yml +++ b/.github/workflows/update-gh-pages-on-release.yml @@ -27,7 +27,7 @@ jobs: git worktree add ../docs gh-pages - name: Update the docs on the gh-pages branch run: | - python docs/update_gh_pages.py docs/build/html ../docs --tag ${{ GITHUB_REF_NAME }} + python docs/update_gh_pages.py docs/build/html ../docs --tag ${{ github.ref_name }} - name: Configure Git run: | git config user.name "Documentation Bot" diff --git a/CHANGES.rst b/CHANGES.rst index fc57fac9..73cf2d85 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,20 @@ Release history ================= +Version 7.0.3 +============= + +Released: 2023-04-03 + +This is a bugfix release that fixes the automated documentation build +for releases. + +Fixes +----- +* Fix the GitHub Actions workflow for automated documentation updates + on releases. (#568) + + Version 7.0.2 ============= diff --git a/pyproject.toml b/pyproject.toml index 7a007406..516e941e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta' [project] name = 'envisage' -version = '7.0.2' +version = '7.0.3' description = 'Extensible application framework' readme = 'README.rst' requires-python = '>= 3.7'