move TRUE and FALSE macros back to the top #38
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 bootloader | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Set up MinGW | |
uses: e-t-l/[email protected] | |
with: | |
platform: x64 | |
- name: Build bootloader | |
run: make | |
- name: Upload bootloader | |
uses: actions/upload-artifact@v3 | |
with: | |
name: bootloader | |
path: Binaries/BOOTX64.efi |