Skip to content

Commit

Permalink
make sure we get a valid archive name
Browse files Browse the repository at this point in the history
  • Loading branch information
renefritze committed Jan 10, 2024
1 parent 8b47139 commit 4a2ab7b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,11 +113,17 @@ jobs:
else
docker build --build-arg BASEOS=slim-bullseye --build-arg PLATFORM=manylinux -f .github/workflows/Dockerfile .
fi
- name: Set artifact name
id: set_artifact_name
run: |
VALUE="archive_wheels_${{ matrix.os }}_${{ matrix.arch }}_${{ matrix.skip }}"
VALUE="${VALUE//\*/}"
echo "value=${VALUE}" >> ${GITHUB_OUTPUT}
- uses: actions/upload-artifact@v4
if: (!matrix.use_qemu) || fromJSON(env.USE_QEMU)
with:
path: ./wheelhouse/*.whl
name: archive_wheels_${{ matrix.os }}_${{ matrix.arch }}_${{ matrix.skip }}
name: ${{ steps.set_artifact_name.outputs.value }}

build-sdist:
name: Build source distribution
Expand Down

0 comments on commit 4a2ab7b

Please sign in to comment.