Skip to content

Commit 3d19739

Browse files
committed
Update ci.yml
1 parent 7e87ae2 commit 3d19739

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ jobs:
4141
cat transformed-submodules.json
4242
4343
# Set the output for the submodule matrix
44-
echo "::setOutput name=submodule-matrix::$(cat transformed-submodules.json)"
44+
echo "submodule-matrix=$(cat transformed-submodules.json)" >> $GITHUB_OUTPUT
45+
4546
4647
make:
4748
needs: prepare
@@ -131,8 +132,8 @@ jobs:
131132
echo "{\"commit\": \"$(git rev-parse HEAD)\", \"id\": \"$(git rev-list --max-parents=0 HEAD)\"}" > dist/metadata.json
132133
133134
id=$(jq -r '.id' dist/metadata.json)
134-
echo "::setOutput name=id::$id" # Set the id as an output variable
135-
135+
echo "id=$id" >> $GITHUB_OUTPUT
136+
136137
cd dist
137138
echo "::notice::Building plugin archive..."
138139
zip -r "$id.zip" .

0 commit comments

Comments
 (0)