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 0b1f1b0 commit a64a960Copy full SHA for a64a960
.github/workflows/upload-release-assets.yml
@@ -66,8 +66,8 @@ jobs:
66
PKG_REPO=${{inputs.pkgRepo}} CERT=pubtest.crt KEY=pubtest.key DL=1 scripts/packages/package-check.sh ${{inputs.pkgVersion}}
67
for i in $(find ${{inputs.pkgRepo}}/nginx-agent | grep -e "nginx-agent[_-]${{inputs.pkgVersion}}"); do
68
if [[ "$i" == *.deb ]]; then
69
- echo "Renaming ${i} to ${dest/_/-/}"
70
- mv "${i}" "${dest/_/-/}"
+ echo "Renaming ${i} to ${i/_/-/}"
+ mv "${i}" "${i/_/-/}"
71
fi
72
if [[ "$i" == *.apk ]]; then
73
ver=$(echo "$i" | grep -o -e "v[0-9]*\.[0-9]*")
0 commit comments