Files
ATEST/.gitea/workflows/rpi-6.12.y.yml
T
Cantibra 44e6ed0b29
Raspberry Pi Linux Kernel 6.12.y / sources (push) Successful in 0s
Raspberry Pi Linux Kernel 6.12.y / echo (push) Successful in 0s
33
2026-05-06 11:12:41 +02:00

26 lines
532 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:
needs:
- sources
runs-on: cicd.any
steps:
- name: Repository [Clone]
run: |
/usr/bin/echo ${{ needs.sources.outputs.version }}
# build:
# needs:
# - sources
# uses: ./.gitea/workflows/build.yml
# with:
# VERSION: ${{ needs.sources.outputs.version }}