Skip to content

fix: ci

fix: ci #38

Workflow file for this run

---
# 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