Skip to content

Commit 21d8be0

Browse files
committed
workflows: test: Fix BUILD_URL env
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 <[email protected]>
1 parent c9f4958 commit 21d8be0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ jobs:
1919
runs-on: ubuntu-latest
2020
outputs:
2121
jobmatrix: ${{ steps.listjobs.outputs.jobmatrix }}
22+
env:
23+
BUILD_URL: ${{ inputs.url }}
2224
steps:
23-
- env:
24-
BUILD_URL: ${{ inputs.url }}
2525
- name: Clone repository
2626
uses: actions/checkout@v4
2727
with:

0 commit comments

Comments
 (0)