Skip to content

Commit 6d56038

Browse files
committed
Update ci.yml
1 parent cae0ab9 commit 6d56038

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- workflow_dispatch
77

88
jobs:
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

0 commit comments

Comments
 (0)