Skip to content

Commit

Permalink
Use pre-installed MSBuild
Browse files Browse the repository at this point in the history
  • Loading branch information
danielinux committed Nov 25, 2024
1 parent 18eb3f8 commit 8272c18
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions .github/workflows/build-keytools-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,14 @@ jobs:
- name: Checkout Code
uses: actions/checkout@v3

# Step 2: Set up MSBuild
- name: Set up MSBuild Environment
shell: powershell
run: |
# Ensure Visual Studio Build Tools are installed
choco install visualstudio2022buildtools --yes
choco install visualstudio2022-workload-vctools --yes

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

0 comments on commit 8272c18

Please sign in to comment.