Skip to content

Commit 01cf4ec

Browse files
committed
Updated github actions to save get_poetry.py instead of output it to the console.
1 parent 4fb09f5 commit 01cf4ec

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Install dependencies
2121
run: |
2222
python -m pip install --upgrade pip
23-
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py
23+
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py > get_poetry.py
2424
python get-poetry.py --version 1.0.2
2525
poetry install
2626
- name: Lint with flake8

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Install Poetry
2121
run: |
2222
python -m pip install --upgrade pip
23-
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py
23+
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py > get_poetry.py
2424
python get-poetry.py --version 1.0.2
2525
poetry install
2626
- name: Poetry - Set Version & Build

0 commit comments

Comments
 (0)