Skip to content

Commit 7c6a017

Browse files
committed
Added step to set up msbuild
1 parent 1f1cf14 commit 7c6a017

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/build-keytools-windows.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,17 @@ jobs:
1616
- name: Checkout Code
1717
uses: actions/checkout@v3
1818

19-
# Step 2: Build the solution
19+
# Step 2: Setup MSBuild
20+
- name: Setup MSBuild
21+
uses: microsoft/setup-msbuild@v1
22+
23+
# Step 3: Build the solution
2024
- name: Build Solution
2125
shell: cmd
2226
run: |
2327
MSBuild.exe tools\keytools\wolfBootKeyTools.sln /p:Configuration=Release /p:Platform="x64"
2428
25-
# Step 3: Upload executables as artifacts
29+
# Step 4: Upload executables as artifacts
2630
- name: Upload EXE Artifacts
2731
uses: actions/upload-artifact@v3
2832
with:

0 commit comments

Comments
 (0)