Skip to content

Commit 287fcc1

Browse files
committed
fixing test action by using actual bash instead of a templating thing
1 parent 0ca9290 commit 287fcc1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ jobs:
2929
run: |
3030
curl -O -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py
3131
python get-poetry.py -y --version 1.0.10
32-
echo "PATH={$HOME}/.poetry/bin:{$PATH}" >> $GITHUB_ENV
32+
echo "PATH=${HOME}/.poetry/bin:${PATH}" >> $GITHUB_ENV
3333
rm get-poetry.py
3434
3535
- name: Get poetry cache paths from config
3636
run: |
3737
echo "poetry_cache_dir=$(poetry config --list | sed -n 's/.*cache-dir = //p' | sed -e 's/^\"//' -e 's/\"$//')" >> $GITHUB_ENV
38-
echo "poetry_virtualenvs_path::$(poetry config --list | sed -n 's/.*virtualenvs.path = .* # //p' | sed -e 's/^\"//' -e 's/\"$//')" >> $GITHUB_ENV
38+
echo "poetry_virtualenvs_path=$(poetry config --list | sed -n 's/.*virtualenvs.path = .* # //p' | sed -e 's/^\"//' -e 's/\"$//')" >> $GITHUB_ENV
3939
4040
- name: Configure poetry
4141
shell: bash

0 commit comments

Comments
 (0)