@@ -16,32 +16,29 @@ jobs:
16
16
17
17
steps :
18
18
- uses : actions/checkout@v4
19
-
20
19
- uses : microsoft/setup-msbuild@v2
21
-
20
+ - uses : nuget/setup-nuget@v2
21
+
22
22
- name : 1. Versioning Release
23
23
id : step-version
24
24
uses : CodingWithCalvin/GHA-VSVsixVersioner@v1
25
25
with :
26
26
extension-manifest-file : ' src/CodingWithCalvin.OpenInNotepadPlusPlus.Vsix.x64/source.extension.vsixmanifest'
27
27
extension-source-file : ' src/CodingWithCalvin.OpenInNotepadPlusPlus.Vsix.x64/VsixConstants.cs'
28
28
29
- - name : 2. Bootstrapping NuGet Installer
30
- uses : nuget/setup-nuget@v2
31
-
32
- - name : 3. Restoring Packages
29
+ - name : 2. Restoring Packages
33
30
run : nuget restore ./src/CodingWithCalvin.OpenInNotepadPlusPlus.sln
34
31
35
- - name : 4 . Building Project
32
+ - name : 3 . Building Project
36
33
run : msbuild 'src/CodingWithCalvin.OpenInNotepadPlusPlus.Vsix.x64/CodingWithCalvin.OpenInNotepadPlusPlus.Vsix.x64.csproj' /p:configuration='Release' /p:platform='x64'
37
34
38
- - name : 5 . Create Information File
35
+ - name : 4 . Create Information File
39
36
40
37
with :
41
38
name : ' src/CodingWithCalvin.OpenInNotepadPlusPlus.Vsix.x64/bin/x64/Release/CodingWithCalvin.OpenInNotepadPlusPlus.Vsix.x64.info'
42
39
json : ' {"sha":"${{ github.sha }}", "version":"${{ steps.step-version.outputs.version }}"}'
43
40
44
- - name : 6 . Publishing Build Artifact
41
+ - name : 5 . Publishing Build Artifact
45
42
uses : actions/upload-artifact@v4
46
43
with :
47
44
path : |
0 commit comments