Skip to content

Commit

Permalink
ci(rebase): smoketest windows fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mariugul committed Sep 3, 2024
1 parent d87eabc commit 19c9ac5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ jobs:
if: steps.cache-poetry.outputs.cache-hit != 'true'
run: |
if [ $RUNNER_OS = 'Windows' ]; then
set POETRY_HOME=C:\opt\poetry
python -m venv %POETRY_HOME%
%POETRY_HOME%\Scripts\pip install poetry==1.8.2
%POETRY_HOME%\Scripts\poetry --version
$POETRY_HOME = "C:\\opt\\poetry"
python -m venv $POETRY_HOME
$env:POETRY_HOME\Scripts\pip install poetry==1.8.2
$env:POETRY_HOME\Scripts\poetry --version
elif [ $RUNNER_OS = 'macOS' ]; then
export POETRY_HOME=$HOME/.poetry
python3 -m venv $POETRY_HOME
Expand Down

0 comments on commit 19c9ac5

Please sign in to comment.