From d7107fd1b1b4acfc4dcf190006bb833e2b02606b Mon Sep 17 00:00:00 2001 From: Vadim Lebedev Date: Tue, 2 Aug 2022 11:35:08 +0200 Subject: [PATCH] Fix version step --- .github/workflows/build-wheels.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-wheels.yaml b/.github/workflows/build-wheels.yaml index a1e4822..fe726b0 100644 --- a/.github/workflows/build-wheels.yaml +++ b/.github/workflows/build-wheels.yaml @@ -20,6 +20,7 @@ jobs: cat /etc/issue echo "Shell: $SHELL" echo "Mount points:"; mount + echo "nproc: $( nproc )" env - name: Chose Python version @@ -67,7 +68,7 @@ jobs: - name: version run: | - echo "::set-output name=version::$(python3 -c 'import libarchive; print(libarchive._libarchive.ARCHIVE_VERSION_STRING.split()[1])'')" + echo "::set-output name=version::$(python3 -c 'import libarchive; print(libarchive._libarchive.ARCHIVE_VERSION_STRING.split()[1])')" id: version - uses: actions/upload-artifact@v3