mirror of
https://github.com/armbian/cache.git
synced 2026-01-06 10:36:52 -08:00
47 lines
897 B
YAML
47 lines
897 B
YAML
name: Uboot
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
|
|
Legacy:
|
|
|
|
if: ${{ success() && github.repository_owner == 'Armbian' }}
|
|
uses: armbian/scripts/.github/workflows/armbian-framework-uboot-cache.yml@master
|
|
|
|
with:
|
|
|
|
runner: "qemu"
|
|
include: 'grep legacy | '
|
|
|
|
secrets:
|
|
token: ${{ secrets.CR_PAT }}
|
|
|
|
Current:
|
|
|
|
if: ${{ success() && github.repository_owner == 'Armbian' }}
|
|
uses: armbian/scripts/.github/workflows/armbian-framework-uboot-cache.yml@master
|
|
|
|
with:
|
|
|
|
runner: "qemu"
|
|
include: 'grep current | '
|
|
|
|
secrets:
|
|
token: ${{ secrets.CR_PAT }}
|
|
|
|
Edge:
|
|
|
|
if: ${{ success() && github.repository_owner == 'Armbian' }}
|
|
uses: armbian/scripts/.github/workflows/armbian-framework-uboot-cache.yml@master
|
|
|
|
with:
|
|
|
|
runner: "ubuntu-latest"
|
|
include: 'grep edge | '
|
|
|
|
secrets:
|
|
token: ${{ secrets.CR_PAT }}
|