From d33776c8d95d0e7cf4ff5376c94029fa3f44bda2 Mon Sep 17 00:00:00 2001 From: Alex Carney Date: Mon, 15 Jan 2024 23:08:24 +0000 Subject: [PATCH] workflow: Fix quoting --- .github/workflows/vscode-release.yml | 2 +- code/README.md | 7 ++++++- code/changes/720.misc.md | 1 + 3 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 code/changes/720.misc.md diff --git a/.github/workflows/vscode-release.yml b/.github/workflows/vscode-release.yml index 783f63c27..8e4d794a3 100644 --- a/.github/workflows/vscode-release.yml +++ b/.github/workflows/vscode-release.yml @@ -50,7 +50,7 @@ jobs: cd code # Use version of esbonio on PyPi for release builds - ESBONIO_WHL=--pre esbonio tox run -e bundle-deps + ESBONIO_WHL="--pre esbonio" tox run -e bundle-deps npm ci --prefer-offline npm run package diff --git a/code/README.md b/code/README.md index 4f4ad0f3d..55a3a6a05 100644 --- a/code/README.md +++ b/code/README.md @@ -61,9 +61,14 @@ The `esbonio` language server is bundled with this extension, so there is no nee However, the server will need access the Python environment you use to build your documentation. 1. Open the folder containing your documentation project in VSCode, (opening a single file without an active workspace is not currently supported and will lead to errors). + 1. Using the `Python: Select Interpreter` command from the Python extension, choose the environment you use to build your documentation. - (You might be required to run the `Esbonio: Restart Language Server` command for it to take effect) + (You might be required to run the `Esbonio: Restart Language Server` command for it to take effect). + + Alternatively, you can set the `esbonio.sphinx.pythonCommand` option to override the python interpreter used. + 1. Open a reStructuredText or markdown file from your Sphinx project. + 1. Sphinx build output will be available in Esbonio's `Output` view in VSCode's panel. ## Supplementry Extensions diff --git a/code/changes/720.misc.md b/code/changes/720.misc.md new file mode 100644 index 000000000..16e6e348c --- /dev/null +++ b/code/changes/720.misc.md @@ -0,0 +1 @@ +Fix release pipeline