Skip to content

Commit

Permalink
workflow: Fix quoting
Browse files Browse the repository at this point in the history
  • Loading branch information
alcarney committed Jan 15, 2024
1 parent 0757722 commit d33776c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/vscode-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 6 additions & 1 deletion code/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions code/changes/720.misc.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix release pipeline

0 comments on commit d33776c

Please sign in to comment.