23 lines
471 B
YAML
23 lines
471 B
YAML
name: Raspberry Pi Linux Kernel 6.12.y
|
|
on:
|
|
- push
|
|
# branches:
|
|
# - rpi-6.12.y
|
|
env:
|
|
BRANCH: rpi-6.12.y
|
|
jobs:
|
|
sources:
|
|
uses: ./.gitea/workflows/sources.yml
|
|
with:
|
|
BRANCH: ${{ env.branch }}
|
|
echo:
|
|
steps:
|
|
- name: Linux Sources [Clone]
|
|
run: |
|
|
echo ${{ needs.sources.outputs.version }}
|
|
build:
|
|
needs:
|
|
- sources
|
|
uses: ./.gitea/workflows/build.yml
|
|
with:
|
|
VERSION: ${{ needs.sources.outputs.version }} |