We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73c7088 commit 5135c92Copy full SHA for 5135c92
1 file changed
.github/workflows/build.yml
@@ -107,6 +107,7 @@ jobs:
107
if: env.skip_build != 'true'
108
with:
109
path: python/dist/*.tar.gz
110
+ name: sdist
111
overwrite: true
112
113
upload_pypi:
@@ -118,11 +119,18 @@ jobs:
118
119
os: [ubuntu-latest, windows-latest, macos-latest]
120
121
steps:
- - uses: actions/download-artifact@v4.1.7
122
+ - name: Download wheel artifacts
123
+ uses: actions/download-artifact@v4.1.7
124
125
name: wheelhouse-${{ matrix.os }}
126
path: dist
127
128
+ - name: Download sdist artifact
129
130
+ with:
131
132
+ path: dist
133
+
134
- name: Production Release
135
if: startsWith(github.repository, 'MicrochipTech')
136
uses: pypa/gh-action-pypi-publish@release/v1.10
0 commit comments