Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The most significant changes involve the renaming and modification of…
… the "Build App" step, and the addition of a 'v' prefix to the version number in the "Create tag", "Create release draft", and "Upload MSI to release" steps. 1. The "Build App" step has been renamed to "Publish App (framework-dependent)" and "Publish App (self-contained)" for framework-dependent and self-contained builds respectively. The command to run has also been changed from `dotnet restore src` to `dotnet publish` with additional parameters. This change allows for more specific and accurate build processes. 2. The "Create tag" step has been updated to prefix the version number with 'v'. The tag name is now stored in the `env.TAG_NAME` variable. This change standardizes the versioning format and allows for easier reference to specific versions. 3. The "Create release draft" step has been updated to use the version number prefixed with 'v'. The release draft is now created with the tag name stored in the `env.TAG_NAME` variable. This change ensures consistency between the tag and release draft. 4. The "Upload MSI to release" step has been updated to use the version number prefixed with 'v'. The MSI file is uploaded to the release created with the tag name stored in the `env.TAG_NAME` variable. This change ensures that the uploaded MSI file corresponds to the correct release version. References to the code changes can be found in the respective steps of the build process.
- Loading branch information