From 0f67ace24af084f168706888a6f4a9a52a4bdd78 Mon Sep 17 00:00:00 2001 From: Paul Hewlett Date: Thu, 19 May 2022 11:25:47 +0100 Subject: [PATCH] Docs did not publish on release Problem: The docs did not publish a release because of a buggy github action. Solution: Removed apt-get update from pre-build-cmd in action. Signed-off-by: Paul Hewlett --- .github/workflows/python-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index ac2fa023..d535010a 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -36,7 +36,7 @@ jobs: uses: ammaraskar/sphinx-action@master with: docs-folder: "docs/" - pre-build-command: "apt-get update && apt-get install -y libenchant-2-2" + pre-build-command: "apt-get install -y libenchant-2-2" - name: Publish docs uses: peaceiris/actions-gh-pages@v3 with: