We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93cba9e commit 19dc4d6Copy full SHA for 19dc4d6
.github/workflows/ci.yml
@@ -84,20 +84,15 @@ jobs:
84
python-version: '3.10'
85
86
- name: install
87
- run: pip install -U twine build
+ run: pip install -U build
88
89
- name: check GITHUB_REF matches package version
90
- uses: samuelcolvin/check-python-version@v3
+ uses: samuelcolvin/check-python-version@v3.1
91
with:
92
version_file_path: pydantic_extra_types/__init__.py
93
94
- name: build
95
run: python -m build
96
97
- - run: twine check --strict dist/*
98
-
99
- - name: upload to pypi
100
- run: twine upload dist/*
101
- env:
102
- TWINE_USERNAME: __token__
103
- TWINE_PASSWORD: ${{ secrets.pypi_token }}
+ - name: Upload package to PyPI
+ uses: pypa/gh-action-pypi-publish@release/v1
0 commit comments