fix: ci #38
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
--- | |
# Example of using firmware-action | |
name: coreboot build | |
on: | |
push: | |
schedule: | |
- cron: '0 0 * * 0' | |
permissions: | |
contents: read | |
jobs: | |
# Example of building coreboot | |
build-coreboot-example: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
- name: firmware-action | |
uses: 9elements/[email protected] | |
with: | |
config: 'coreboot-example.json' | |
target: 'coreboot-example' | |
recursive: 'false' | |
- name: Get artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: coreboot-4.19 | |
path: output-coreboot | |
retention-days: 30 | |
build-coreboot-linuxboot-example: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
- name: firmware-action | |
uses: 9elements/[email protected] | |
with: | |
config: 'coreboot-linuxboot-example.json' | |
target: 'coreboot_linuxboot_defconfig' | |
recursive: 'true' | |
- name: Get artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: coreboot-4.19 | |
path: output-coreboot | |
retention-days: 30 |