Skip to content

Commit

Permalink
.github/workflows/release.yml: Fix release
Browse files Browse the repository at this point in the history
When #294, I didn't notice that the python version was not inside
quotes, leading to python version being parsed as 3.1 and not 3.10.
Breaking the release workflow.
Add missing quotes.

Signed-off-by: Arnaud Patard <[email protected]>
  • Loading branch information
apatard committed Jan 23, 2025
1 parent 613b885 commit 980db38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Switch to using Python 3.10 by default
uses: actions/setup-python@v5
with:
python-version: 3.10
python-version: "3.10"

- name: Install tox
run: >-
Expand Down

0 comments on commit 980db38

Please sign in to comment.