From 21d8be0ae674a425a813686c10c468127cc10113 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Minier?= Date: Wed, 25 Jun 2025 14:56:53 +0200 Subject: [PATCH] workflows: test: Fix BUILD_URL env MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit BUILD_URL was not properly defined for a single step, and BUILD_URL is used across multiple steps of that job, so define it properly and at the job level. Signed-off-by: Loïc Minier --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2aba72f..3cc2ada 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,9 +19,9 @@ jobs: runs-on: ubuntu-latest outputs: jobmatrix: ${{ steps.listjobs.outputs.jobmatrix }} + env: + BUILD_URL: ${{ inputs.url }} steps: - - env: - BUILD_URL: ${{ inputs.url }} - name: Clone repository uses: actions/checkout@v4 with: