Skip to content

Commit

Permalink
Fix invalid artifact names
Browse files Browse the repository at this point in the history
  • Loading branch information
jspahrsummers committed Nov 21, 2024
1 parent 46dde52 commit afceab2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: dist-${{ matrix.package }}
name: dist-${{ replace(matrix.package, '/', '-') }}
path: ${{ matrix.package }}/dist/

publish:
Expand All @@ -67,13 +67,13 @@ jobs:
runs-on: ubuntu-latest
environment: release
permissions:
id-token: write # Required for trusted publishing
id-token: write # Required for trusted publishing

steps:
- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: dist-${{ matrix.package }}
name: dist-${{ replace(matrix.package, '/', '-') }}
path: dist/

- name: Publish package to PyPI
Expand Down

0 comments on commit afceab2

Please sign in to comment.