File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -103,9 +103,27 @@ jobs:
103
103
- windows
104
104
steps :
105
105
- task : UsePythonVersion@0
106
+
107
+ # It looks we need to run Download task for each job
106
108
- task : DownloadPipelineArtifact@2
109
+ inputs :
110
+ artifact : ' tinyobjDeployLinux'
111
+ path : $(Pipeline.Workspace)/tinyobjDeployLinux
112
+
113
+ - task : DownloadPipelineArtifact@2
114
+ inputs :
115
+ artifact : ' tinyobjDeployMacOS'
116
+ path : $(Pipeline.Workspace)/tinyobjDeployMacOS
117
+
118
+ - task : DownloadPipelineArtifact@2
119
+ inputs :
120
+ artifact : ' tinyobjDeployWindows'
121
+ path : $(Pipeline.Workspace)/tinyobjDeployWindows
122
+
123
+ # Publish to PyPI through twine
107
124
- bash : |
108
125
cd $(Pipeline.Workspace)
126
+ tree
109
127
python -m pip install --upgrade pip
110
128
pip install twine
111
129
twine upload -u "__token__" --skip-existing tinyobjDeployLinux/* tinyobjDeployMacOS/* tinyobjDeployWindows/*
You can’t perform that action at this time.
0 commit comments