diff options
| author | Christian Marangi <ansuelsmth@gmail.com> | 2023-05-25 23:09:59 +0200 |
|---|---|---|
| committer | Christian Marangi <ansuelsmth@gmail.com> | 2023-05-25 23:09:59 +0200 |
| commit | 8aa5a860101cc3f8d35ca968746320495c4b469e (patch) | |
| tree | 4b67dbb98d0c5c67f77a315c383007c9840d5799 /.github | |
| parent | bf8187d5dc4d4bbb23770955744bca1787f32ac0 (diff) | |
| download | upstream-8aa5a860101cc3f8d35ca968746320495c4b469e.tar.gz upstream-8aa5a860101cc3f8d35ca968746320495c4b469e.tar.bz2 upstream-8aa5a860101cc3f8d35ca968746320495c4b469e.zip | |
CI: correctly output subtarget in label workflow
Commit bf8187d5dc4d ("CI: use split target and subtarget in label
workflow") didn't correctly output subtarget resulting in calling with
an empty subtarget. Fix this and correctly output generated subtarget.
Fixes: bf8187d5dc4d ("CI: use split target and subtarget in label workflow")
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/label-kernel.yml | 1 | ||||
| -rw-r--r-- | .github/workflows/label-target.yml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/label-kernel.yml b/.github/workflows/label-kernel.yml index 6c79014edb6..243d285e289 100644 --- a/.github/workflows/label-kernel.yml +++ b/.github/workflows/label-kernel.yml @@ -13,6 +13,7 @@ jobs: runs-on: ubuntu-latest outputs: target: ${{ steps.set_target.outputs.target }} + subtarget: ${{ steps.set_target.outputs.subtarget }} steps: - name: Set target diff --git a/.github/workflows/label-target.yml b/.github/workflows/label-target.yml index 4c3df28f51b..3a624598b1e 100644 --- a/.github/workflows/label-target.yml +++ b/.github/workflows/label-target.yml @@ -13,6 +13,7 @@ jobs: runs-on: ubuntu-latest outputs: target: ${{ steps.set_target.outputs.target }} + subtarget: ${{ steps.set_target.outputs.subtarget }} steps: - name: Set target |
