diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 75c62731..e512c32a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -29,6 +29,8 @@ env: jobs: python_sdist: runs-on: ubuntu-22.04 + outputs: + artifact_name: ${{ steps.build_sdist.outputs.artifact_name }} steps: - name: clone repo uses: actions/checkout@v4 @@ -258,7 +260,7 @@ jobs: id: fetch_sdist uses: actions/download-artifact@v4 with: - name: ${{ needs.build_sdist.outputs.artifact_name }} + name: ${{ needs.python_sdist.outputs.artifact_name }} - name: configure docker foreign arch support uses: docker/setup-qemu-action@v3 @@ -386,7 +388,7 @@ jobs: id: fetch_sdist uses: actions/download-artifact@v4 with: - name: ${{ needs.build_sdist.outputs.artifact_name }} + name: ${{ needs.python_sdist.outputs.artifact_name }} - name: install python uses: actions/setup-python@v5 @@ -488,7 +490,7 @@ jobs: id: fetch_sdist uses: actions/download-artifact@v4 with: - name: ${{ needs.build_sdist.outputs.artifact_name }} + name: ${{ needs.python_sdist.outputs.artifact_name }} - name: build/test wheels uses: pypa/cibuildwheel@v2.18.1