Skip to content

Commit

Permalink
plugin runner quotes fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan-Olt committed Jul 11, 2024
1 parent cbb5578 commit e392550
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-plugins.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ jobs:
cd output
export PLUGIN_FILE=$(find *.zip | grep -m1 zip)
gh release create \
'${PLUGIN_NAME}-${{ github.sha }}' \
${PLUGIN_NAME}-${{ github.sha }} \
--repo '${{ github.repository }}' \
--title ${PLUGIN_FILE} \
--notes "Automatic build of ${PLUGIN_NAME}"
gh release upload \
'${PLUGIN_NAME}-${{ github.sha }}' \
'${PLUGIN_FILE}' \
${PLUGIN_NAME}-${{ github.sha }} \
${PLUGIN_FILE} \
--repo '${{ github.repository }}'
2 changes: 1 addition & 1 deletion plugins/nnedi3.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"tests": [
{
"name" : "process-blank",
"create_files" : ["nnedi3-test.vpy" ],
"create_files" : ["nnedi3-test.vpy"],
"commands": [
{ "cmd": [ "cp", "{BUILDDIR}/vapoursynth-nnedi3-12/src/nnedi3_weights.bin", "{TESTDIR}/nnedi3_weights.bin" ] },
{ "cwd": "{TESTDIR}", "cmd": ["{VSPIPE}", "nnedi3-test.vpy", "--"] }
Expand Down

0 comments on commit e392550

Please sign in to comment.