Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,10 @@ jobs:
if: github.event_name == 'push' && contains(github.ref, 'refs/tags')
needs: [test, docs]
runs-on: ubuntu-latest
environment: release
permissions:
id-token: write
contents: write
steps:

- name: "Download the library artifacts from build-library step"
Expand All @@ -370,7 +374,6 @@ jobs:
name: ${{ env.PACKAGE_NAME }}-artifacts
path: ${{ env.PACKAGE_NAME }}-artifacts


- name: Display structure of downloaded files
run: ls -R

Expand All @@ -379,7 +382,7 @@ jobs:
with:
repository-url: "https://upload.pypi.org/legacy/"
print-hash: true
packages-dir: ${{ env.PACKAGE_NAMEt }}-artifacts
packages-dir: ${{ env.PACKAGE_NAME }}-artifacts
skip-existing: false

- name: "Release to GitHub"
Expand Down