Skip to content

Commit 5135c92

Browse files
committed
Added sdist upload step
1 parent 73c7088 commit 5135c92

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/build.yml

+9-1
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ jobs:
107107
if: env.skip_build != 'true'
108108
with:
109109
path: python/dist/*.tar.gz
110+
name: sdist
110111
overwrite: true
111112

112113
upload_pypi:
@@ -118,11 +119,18 @@ jobs:
118119
os: [ubuntu-latest, windows-latest, macos-latest]
119120

120121
steps:
121-
- uses: actions/[email protected]
122+
- name: Download wheel artifacts
123+
uses: actions/[email protected]
122124
with:
123125
name: wheelhouse-${{ matrix.os }}
124126
path: dist
125127

128+
- name: Download sdist artifact
129+
uses: actions/[email protected]
130+
with:
131+
name: sdist
132+
path: dist
133+
126134
- name: Production Release
127135
if: startsWith(github.repository, 'MicrochipTech')
128136
uses: pypa/gh-action-pypi-publish@release/v1.10

0 commit comments

Comments
 (0)