Skip to content

Commit c1142fe

Browse files
committed
Try appending instead of prepending?
1 parent a3320ea commit c1142fe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
2929
- name: Add Poetry to PATH
3030
run: |
31-
echo "$HOME/.poetry/bin:$PATH" >> $GITHUB_ENV
31+
echo "$PATH:$HOME/.poetry/bin" >> $GITHUB_ENV
3232
3333
- name: Install dependencies
3434
run: |

.github/workflows/ci-mac.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
2929
- name: Add Poetry to PATH
3030
run: |
31-
echo "$HOME/.poetry/bin:$PATH" >> $GITHUB_ENV
31+
echo "$PATH:$HOME/.poetry/bin" >> $GITHUB_ENV
3232
3333
- name: Install dependencies
3434
run: |

0 commit comments

Comments
 (0)