diff --git a/.gitea/workflows/rpi-6.12.y.yml b/.gitea/workflows/rpi-6.12.y.yml index 117b9c6..1df48f1 100644 --- a/.gitea/workflows/rpi-6.12.y.yml +++ b/.gitea/workflows/rpi-6.12.y.yml @@ -10,6 +10,8 @@ jobs: uses: ./.gitea/workflows/sources.yml with: BRANCH: ${{ env.branch }} + outputs: + VERSION: ${{ jobs.sources.outputs.version }} echo: runs-on: cicd.any needs: @@ -17,10 +19,10 @@ jobs: steps: - name: Linux Sources [Clone] run: | - echo ${{ jobs.sources.outputs.version }} + echo ${{ needs.sources.outputs.version }} build: needs: - sources uses: ./.gitea/workflows/build.yml with: - VERSION: ${{ jobs.sources.outputs.version }} \ No newline at end of file + VERSION: ${{ needs.sources.outputs.version }} \ No newline at end of file