sln2csproj 0.2.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -262,12 +262,15 @@ git tag v0.2.0
|
|
|
262
262
|
git push origin v0.2.0
|
|
263
263
|
```
|
|
264
264
|
|
|
265
|
-
The workflow will:
|
|
265
|
+
The workflow will always:
|
|
266
266
|
|
|
267
267
|
- install dependencies
|
|
268
268
|
- run tests
|
|
269
|
-
- publish the npm package
|
|
270
269
|
- build a Windows `exe`
|
|
271
|
-
|
|
270
|
+
|
|
271
|
+
When triggered by a version tag such as `v0.3.0`, it will also:
|
|
272
|
+
|
|
273
|
+
- publish the npm package
|
|
274
|
+
- attach the Windows `exe` and `.zip` to the GitHub Release
|
|
272
275
|
|
|
273
276
|
The Windows executable is built with Node.js Single Executable Applications (SEA), so Windows users can download it from GitHub Releases without installing Node first.
|