File tree Expand file tree Collapse file tree 3 files changed +13
-2
lines changed
Expand file tree Collapse file tree 3 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 3939 - ./Dockerfile
4040 - ./README.md
4141 - ./build-codex.sh
42+ - ./build-install-poetry.sh
4243 - ./build-wheels.sh
4344 - ./deploy-pypi.sh
4445 - ./dist
5354 steps :
5455 - attach_workspace :
5556 at : .
57+ command :
58+ - run :
59+ command : ./build-install-poetry.sh
60+ name : Install poetry
5661 - run :
5762 command : ./docker/docker-login.sh
5863 name : Login to Docker Hub
7176 steps :
7277 - attach_workspace :
7378 at : .
79+ - run :
80+ command : ./build-install-poetry.sh
81+ name : Install poetry
7482 - run :
7583 command : ./docker/docker-login.sh
7684 name : Login to Docker Hub
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ # install poetry, for wheels-version.sh & deploy-pypi.sh
3+ set -euo pipefail
4+ pip3 install -U pip
5+ pip3 install -U poetry
Original file line number Diff line number Diff line change 11#! /bin/bash
22set -euo pipefail
3- pip3 install -U pip
4- pip3 install -U poetry
53poetry publish -u " $PYPI_USER " -p " $PYPI_PASS "
You can’t perform that action at this time.
0 commit comments