24
Raspberry Pi Linux Kernel 6.12.y / sources (push) Successful in 0s
Raspberry Pi Linux Kernel 6.12.y / echo (push) Successful in 0s
Raspberry Pi Linux Kernel 6.12.y / build (push) Successful in 0s

This commit is contained in:
Cantibra
2026-05-06 10:48:13 +02:00
parent 96451a1706
commit 851966a7ec
+4 -2
View File
@@ -10,6 +10,8 @@ jobs:
uses: ./.gitea/workflows/sources.yml uses: ./.gitea/workflows/sources.yml
with: with:
BRANCH: ${{ env.branch }} BRANCH: ${{ env.branch }}
outputs:
VERSION: ${{ jobs.sources.outputs.version }}
echo: echo:
runs-on: cicd.any runs-on: cicd.any
needs: needs:
@@ -17,10 +19,10 @@ jobs:
steps: steps:
- name: Linux Sources [Clone] - name: Linux Sources [Clone]
run: | run: |
echo ${{ jobs.sources.outputs.version }} echo ${{ needs.sources.outputs.version }}
build: build:
needs: needs:
- sources - sources
uses: ./.gitea/workflows/build.yml uses: ./.gitea/workflows/build.yml
with: with:
VERSION: ${{ jobs.sources.outputs.version }} VERSION: ${{ needs.sources.outputs.version }}