Browse Source

Fixes to deployment workflow

test_fixup
Vadim Lebedev 2 years ago
parent
commit
72db47490f
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      .github/workflows/deploy.yml

+ 3
- 3
.github/workflows/deploy.yml View File

@@ -26,11 +26,11 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v2
with:
python_version: ${{ matrix.python_version }}
python-version: ${{ matrix.python_version }}
- name: Install python tools
run: |
python3 -m pip install auditwheel
- name: Build libarchive C sources
run: |
cd /tmp
@@ -58,4 +58,4 @@ jobs:
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}
wheel_files: wheelhouse/*.whl
packages_dir: wheelhouse/

Loading…
Cancel
Save