Skip to content

Commit cf4945c

Browse files
committed
Fix shell quoting in CI/CD
1 parent 9943ea4 commit cf4945c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Install dependencies
2525
run: |
2626
python -m pip install --upgrade pip
27-
pip install hatch click<8.3.0
27+
pip install hatch "click<8.3.0"
2828
hatch env create
2929
- name: Lint and typecheck
3030
run: |
@@ -53,7 +53,7 @@ jobs:
5353
- name: Install dependencies
5454
run: |
5555
python -m pip install --upgrade pip
56-
pip install hatch click<8.3.0
56+
pip install hatch "click<8.3.0"
5757
- name: Build and publish on PyPI
5858
env:
5959
HATCH_INDEX_USER: ${{ secrets.HATCH_INDEX_USER }}

0 commit comments

Comments
 (0)