Browse Source

Fix CI not attaching source distributions and wheels to the GitHub releases. (#12131)

reivilibre 2 years ago
parent
commit
bfa7d6b035
2 changed files with 3 additions and 1 deletions
  1. 2 1
      .github/workflows/release-artifacts.yml
  2. 1 0
      changelog.d/12131.misc

+ 2 - 1
.github/workflows/release-artifacts.yml

@@ -112,7 +112,8 @@ jobs:
           GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
         with:
           files: |
-            python-dist/*
+            Sdist/*
+            Wheel/*
             debs.tar.xz
           # if it's not already published, keep the release as a draft.
           draft: true

+ 1 - 0
changelog.d/12131.misc

@@ -0,0 +1 @@
+Fix CI not attaching source distributions and wheels to the GitHub releases.