From 5e5d32f64d18deb95a296f1905439db34726b282 Mon Sep 17 00:00:00 2001 From: tangowithfoxtrot <5676771+tangowithfoxtrot@users.noreply.github.com> Date: Tue, 14 Nov 2023 14:50:18 -0800 Subject: [PATCH] fix schemas being a dir? --- .github/workflows/build-python-wheels.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-python-wheels.yml b/.github/workflows/build-python-wheels.yml index fca085d21..c8bc58adc 100644 --- a/.github/workflows/build-python-wheels.yml +++ b/.github/workflows/build-python-wheels.yml @@ -88,12 +88,12 @@ jobs: uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 with: name: schemas.py - path: ${{ github.workspace }}/languages/python/BitwardenClient/schemas.py + path: ${{ github.workspace }}/languages/python/BitwardenClient/ - name: Ensure schemas # TODO: remove this run: | - ls -hal ${{ github.workspace }}/languages/python/BitwardenClient/ - cat ${{ github.workspace }}/languages/python/BitwardenClient/schemas.py || exit 1 + cat ${{ github.workspace }}/languages/python/BitwardenClient/schemas.py + exit 1 - name: Build wheels uses: PyO3/maturin-action@b9e8f88fd4448fdecf5095864cdc7e39a544aa9f # v1.40.7 @@ -108,5 +108,5 @@ jobs: - name: Upload artifact uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 with: - name: BitwardenClient-$_PACKAGE_VERSION-${{ matrix.settings.target }} + name: BitwardenClient-${{ env._PACKAGE_VERSION }}-${{ matrix.settings.target }} path: ${{ github.workspace }}/target/wheels/BitwardenClient*.whl