From d9a06253f7593cfcca76c6e82d74206fe39bf3d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Minier?= Date: Thu, 26 Jun 2025 11:04:53 +0200 Subject: [PATCH] workflows: test: Fix scope of BUILD_URL env MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It's used by multiple jobs. Signed-off-by: Loïc Minier --- .github/workflows/test.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3cc2ada..1f3d67b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,13 +14,14 @@ permissions: packages: read # actions/download-artifact pull-requests: write # EnricoMi/publish-unit-test-result-action +env: + BUILD_URL: ${{ inputs.url }} + jobs: prepare-job-list: runs-on: ubuntu-latest outputs: jobmatrix: ${{ steps.listjobs.outputs.jobmatrix }} - env: - BUILD_URL: ${{ inputs.url }} steps: - name: Clone repository uses: actions/checkout@v4