From 1274cbb691773e285ed045a351961adfd918c293 Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Tue, 3 Oct 2023 16:44:50 +0200 Subject: [PATCH] fix: correct directories --- .github/workflows/check-lfs.yml | 17 ----------------- .github/workflows/release-python.yml | 5 +++-- 2 files changed, 3 insertions(+), 19 deletions(-) delete mode 100644 .github/workflows/check-lfs.yml diff --git a/.github/workflows/check-lfs.yml b/.github/workflows/check-lfs.yml deleted file mode 100644 index 18ffe6aac..000000000 --- a/.github/workflows/check-lfs.yml +++ /dev/null @@ -1,17 +0,0 @@ -on: - push: - branches: [ $default-branch ] - pull_request: - -name: LFS Warning - -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true - -jobs: - lfs_check_pointers: - name: "LFS Warning" - runs-on: ubuntu-latest - steps: - - uses: ppremk/lfs-warning@v3.2 diff --git a/.github/workflows/release-python.yml b/.github/workflows/release-python.yml index 7d5a7c19f..c00c66ccb 100644 --- a/.github/workflows/release-python.yml +++ b/.github/workflows/release-python.yml @@ -43,12 +43,13 @@ jobs: - name: "Build sdist" uses: PyO3/maturin-action@v1 with: + working-directory: py-rattler command: sdist args: --out dist - name: "Test sdist" run: | rustup default $(cat rust-toolchain) - pip install dist/${{ env.PACKAGE_NAME }}-*.tar.gz --force-reinstall + pip install py-rattler/dist/${{ env.PACKAGE_NAME }}-*.tar.gz --force-reinstall - name: "Upload sdist" uses: actions/upload-artifact@v3 with: @@ -85,7 +86,7 @@ jobs: if: ${{ !startsWith(matrix.platform.target, 'aarch64') }} shell: bash run: | - python -m pip install dist/${{ env.PACKAGE_NAME }}-*.whl --force-reinstall + python -m pip install py-rattler/dist/${{ env.PACKAGE_NAME }}-*.whl --force-reinstall - name: "Upload wheels" uses: actions/upload-artifact@v3 with: