This commit is contained in:
pelikhan 2021-11-15 08:59:16 -08:00
Родитель 115b6976c3
Коммит d6abeefb17
1 изменённых файлов: 14 добавлений и 3 удалений

17
.github/workflows/build.yml поставляемый
Просмотреть файл

@ -20,9 +20,20 @@ jobs:
with:
python-version: "3.x" # Version range or exact version of a Python version to use, using SemVer's version range syntax
architecture: "x64" # optional x64 or x86. Defaults to x64 if not specified
- run: pip install --upgrade setuptools
- run: pip install --upgrade build
- run: python3 -m build --sdist --wheel --outdir dist/ .
- name: Install pypa/build
run: >-
python -m
pip install
build
--user
- name: Build a binary wheel and a source tarball
run: >-
python -m
build
--sdist
--wheel
--outdir dist/
.
- name: Publish distribution 📦 to Test PyPI
uses: pypa/gh-action-pypi-publish@master
with: