Files
cache/.github/workflows/uboot.yml
Igor Pečovnik 344f3697f0 Update uboot.yml
2023-02-19 08:17:27 +01:00

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