Bump Binaries from d11d644
to 9a1724f
#47
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 UEFI for active devices | |
on: | |
push: | |
branches: ["main"] | |
paths: | |
- 'Binaries' | |
- 'Common/**' | |
- 'Features/**' | |
- 'Mu_Basecore' | |
- 'MuPatches/**' | |
- 'Platforms/**' | |
- 'Silicon/**' | |
workflow_dispatch: | |
pull_request: | |
types: [opened, reopened] | |
paths: | |
- 'Binaries' | |
- 'Common/**' | |
- 'Features/**' | |
- 'Mu_Basecore' | |
- 'MuPatches/**' | |
- 'Platforms/**' | |
- 'Silicon/**' | |
env: | |
CI_BUILD: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build UEFI for active devices | |
run: bash ./setup_env.sh -p apt && bash ./build_active_devices.sh | |
- name: Upload UEFI images | |
uses: actions/upload-artifact@v4 | |
with: | |
name: uefi-images | |
path: ./Mu-* | |
compression-level: 9 |