Skip to content

Commit

Permalink
Added step to set up msbuild
Browse files Browse the repository at this point in the history
  • Loading branch information
danielinux committed Nov 25, 2024
1 parent 1f1cf14 commit 7c6a017
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build-keytools-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,17 @@ jobs:
- name: Checkout Code
uses: actions/checkout@v3

# Step 2: Build the solution
# Step 2: Setup MSBuild
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v1

# Step 3: Build the solution
- name: Build Solution
shell: cmd
run: |
MSBuild.exe tools\keytools\wolfBootKeyTools.sln /p:Configuration=Release /p:Platform="x64"
# Step 3: Upload executables as artifacts
# Step 4: Upload executables as artifacts
- name: Upload EXE Artifacts
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 7c6a017

Please sign in to comment.