File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 66 - workflow_dispatch
77
88jobs :
9- build :
9+ prepare :
1010 runs-on : ubuntu-latest
1111 outputs :
1212 submodule-matrix : ${{ steps.discover-submodules.outputs.submodule-matrix }}
@@ -43,13 +43,13 @@ jobs:
4343 # Set the output for the submodule matrix
4444 echo "::set-output name=submodule-matrix::$(cat transformed-submodules.json)"
4545
46- process-plugin :
47- needs : build
46+ make :
47+ needs : prepare
4848 runs-on : ubuntu-latest
4949 strategy :
5050 fail-fast : false
5151 matrix :
52- repository : ${{ fromJson(needs.build .outputs.submodule-matrix) }}
52+ repository : ${{ fromJson(needs.prepare .outputs.submodule-matrix) }}
5353 steps :
5454 - name : Checkout specific submodule repository
5555 uses : actions/checkout@v2
@@ -119,9 +119,9 @@ jobs:
119119 name : ${{ steps.copy-files-to-dist.outputs.id }} # Correct reference here
120120 path : dist/${{ steps.copy-files-to-dist.outputs.id }}.zip
121121
122- download :
122+ release :
123123 runs-on : ubuntu-latest
124- needs : process-plugin # Ensure this job runs after the "build" job
124+ needs : make # Ensure this job runs after the "build" job
125125 if : ${{ always() }}
126126 steps :
127127 - name : Download assets from the previous job
You can’t perform that action at this time.
0 commit comments