Skip to content

Commit b0db2a5

Browse files
authored
Update main.yml
1 parent 1f750f6 commit b0db2a5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,11 @@ jobs:
4949
group: ${{ fromJson(needs.discover.outputs.matrix) }}
5050
name: Process Jobs for ${{ matrix.group.platform }}
5151
outputs:
52-
jobs: ${{ toJson(matrix.group.jobs) }} # Direct output definition
52+
jobs: ${{ steps.set-jobs.outputs.jobs }}
5353
steps:
5454
- name: No-op step (required to have at least one step)
55-
run: echo "No-op" # Minimal step to satisfy step requirement
55+
id: set-jobs
56+
run: echo "jobs=${{ toJson( matrix.group.jobs ) }}" >> $GITHUB_OUTPUT
5657

5758
ghcr-upload:
5859
needs: process

0 commit comments

Comments
 (0)