Remove compile-time dependencies from key tools #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Windows Keytools executables | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: [ '*' ] | |
jobs: | |
build-windows: | |
runs-on: windows-latest | |
steps: | |
# Step 1: Checkout the repository | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
# Step 2: 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 | |
- name: Upload EXE Artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: windows-keytools | |
path: | | |
tools\keytools\*.exe |