We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f1cf14 commit 7c6a017Copy full SHA for 7c6a017
.github/workflows/build-keytools-windows.yml
@@ -16,13 +16,17 @@ jobs:
16
- name: Checkout Code
17
uses: actions/checkout@v3
18
19
- # Step 2: Build the solution
+ # Step 2: Setup MSBuild
20
+ - name: Setup MSBuild
21
+ uses: microsoft/setup-msbuild@v1
22
+
23
+ # Step 3: Build the solution
24
- name: Build Solution
25
shell: cmd
26
run: |
27
MSBuild.exe tools\keytools\wolfBootKeyTools.sln /p:Configuration=Release /p:Platform="x64"
28
- # Step 3: Upload executables as artifacts
29
+ # Step 4: Upload executables as artifacts
30
- name: Upload EXE Artifacts
31
uses: actions/upload-artifact@v3
32
with:
0 commit comments