Skip to content

Commit fa124aa

Browse files
author
Anton Benkevich
committed
fix twine
1 parent ce19f4f commit fa124aa

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/stage4_release_pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ jobs:
4141
- name: Install dependencies
4242
run: |
4343
python -m pip install --upgrade pip
44-
pip install setuptools wheel twine
44+
pip install setuptools wheel twine>=3.3.0
4545
- name: Build and publish
4646
env:
4747
TWINE_USERNAME: __token__
4848
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
4949
run: |
5050
python setup.py sdist bdist_wheel
51-
twine upload --skip-existing dist/
51+
twine upload --skip-existing dist/*

.github/workflows/test_all.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ on:
77
push:
88
tags-ignore:
99
- 'v[0-9]+.[0-9]+.[0-9]+'
10+
branches:
11+
- '*'
1012
pull_request:
1113

1214
jobs:

0 commit comments

Comments
 (0)