From 44e6ed0b296d37ffb6f132b6a9d5553de18a3c39 Mon Sep 17 00:00:00 2001 From: Cantibra Date: Wed, 6 May 2026 11:12:41 +0200 Subject: [PATCH] 33 --- .gitea/workflows/build.yml | 1 - .gitea/workflows/rpi-6.12.y.yml | 16 ++++++++++++---- .gitea/workflows/sources.yml | 5 ++--- 3 files changed, 14 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 43c3b49..1fd3f35 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -4,7 +4,6 @@ on: inputs: VERSION: required: true - type: string jobs: job: name: Raspberry Pi Linux Build diff --git a/.gitea/workflows/rpi-6.12.y.yml b/.gitea/workflows/rpi-6.12.y.yml index 8c08ec0..fcbcba2 100644 --- a/.gitea/workflows/rpi-6.12.y.yml +++ b/.gitea/workflows/rpi-6.12.y.yml @@ -10,9 +10,17 @@ jobs: uses: ./.gitea/workflows/sources.yml with: BRANCH: ${{ env.branch }} - build: + echo: needs: - sources - uses: ./.gitea/workflows/build.yml - with: - VERSION: ${{ needs.sources.outputs.version }} \ No newline at end of file + 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 }} \ No newline at end of file diff --git a/.gitea/workflows/sources.yml b/.gitea/workflows/sources.yml index 6d69e05..a64b1f0 100644 --- a/.gitea/workflows/sources.yml +++ b/.gitea/workflows/sources.yml @@ -4,17 +4,15 @@ on: inputs: BRANCH: required: true - type: string outputs: VERSION: required: true - type: string jobs: job: name: Raspberry Pi Linux Sources + runs-on: cicd.any outputs: VERSION: ${{ steps.environment.outputs.version }} - runs-on: cicd.any steps: # - name: Linux Sources [Clone] # run: | @@ -23,6 +21,7 @@ jobs: id: environment run: | VERSION='6.12.16' + /usr/bin/echo "::set-output name=VERSION::${VERSION}" /usr/bin/echo "VERSION=${VERSION}" >> "${GITHUB_OUTPUT}" /usr/bin/echo "Set Variable 'VERSION' to '${VERSION}'" # - name: Linux Sources [Archive]