From 72db47490f187eb5e5453db3036b20cc87aeb076 Mon Sep 17 00:00:00 2001 From: Vadim Lebedev Date: Fri, 19 Aug 2022 17:22:58 +0200 Subject: [PATCH] Fixes to deployment workflow --- .github/workflows/deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index beace1b..d9e49ea 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -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 \ No newline at end of file + packages_dir: wheelhouse/ \ No newline at end of file