File tree Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -36,13 +36,14 @@ Tools\gitreleasemanager.0.7.0\tools\GitReleaseManager.exe create -o nhibernate -
36
36
* Upload binary and source zip files to SourceForge. Update the "latest
37
37
release".
38
38
39
- * Update download link on nhibernate.info.
39
+ * Update download link on nhibernate.info. Update the reference documentation
40
+ if needed.
40
41
41
42
* Push nuget packages including the symbol packages.
42
43
43
44
* In GitHub, mark the milestone as released and publish the release draft,
44
45
creating the release tag by the way. (It should match the tag in the
45
- releasenots link of the release description.)
46
+ releasenotes link of the release description.)
46
47
47
48
* Post release announcement to nhusers, nhibernate-development and as
48
49
project news on SourceForge.
Original file line number Diff line number Diff line change 319
319
<in >
320
320
<items >
321
321
<include name =" ${nuget.nupackages.dir}/*.nupkg" />
322
+ <exclude name =" ${nuget.nupackages.dir}/*.symbols.nupkg" />
322
323
</items >
323
324
</in >
324
325
<do >
325
- <echo message =" nuget push ${filename} ${environment::newline()}" file =" ${nuget.nupackages.pushbatfile}" append =" true" />
326
+ <echo message =" nuget push -source https://nuget.org/ ${path::get-file-name(filename)} ${environment::newline()}" file =" ${nuget.nupackages.pushbatfile}" append =" true" />
327
+ </do >
328
+ </foreach >
329
+ <foreach item =" File" property =" filename" >
330
+ <in >
331
+ <items >
332
+ <include name =" ${nuget.nupackages.dir}/*.symbols.nupkg" />
333
+ </items >
334
+ </in >
335
+ <do >
336
+ <echo message =" nuget push -source https://nuget.smbsrc.net/ ${path::get-file-name(filename)} ${environment::newline()}" file =" ${nuget.nupackages.pushbatfile}" append =" true" />
326
337
</do >
327
338
</foreach >
328
339
</target >
You can’t perform that action at this time.
0 commit comments