We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e87ae2 commit 3d19739Copy full SHA for 3d19739
.github/workflows/ci.yml
@@ -41,7 +41,8 @@ jobs:
41
cat transformed-submodules.json
42
43
# Set the output for the submodule matrix
44
- echo "::setOutput name=submodule-matrix::$(cat transformed-submodules.json)"
+ echo "submodule-matrix=$(cat transformed-submodules.json)" >> $GITHUB_OUTPUT
45
+
46
47
make:
48
needs: prepare
@@ -131,8 +132,8 @@ jobs:
131
132
echo "{\"commit\": \"$(git rev-parse HEAD)\", \"id\": \"$(git rev-list --max-parents=0 HEAD)\"}" > dist/metadata.json
133
134
id=$(jq -r '.id' dist/metadata.json)
- echo "::setOutput name=id::$id" # Set the id as an output variable
135
-
+ echo "id=$id" >> $GITHUB_OUTPUT
136
137
cd dist
138
echo "::notice::Building plugin archive..."
139
zip -r "$id.zip" .
0 commit comments