We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b9ab0f commit 0d17424Copy full SHA for 0d17424
1 file changed
.github/workflows/deprecate_packages.yml
@@ -67,14 +67,14 @@ jobs:
67
pkg=$(echo $pkg | sed -e 's/\//-/g')
68
69
npm_names+="@stdlib/$pkg "
70
- github_repos+="stdlib-js/$pkg "
+ github_repos+="$pkg "
71
done
72
73
# Write `NPM_TOKEN` to `.npmrc` file to authenticate with `npm`:
74
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc
75
76
# Construct the deprecation message:
77
- msg="${{ github.event.inputs.message || 'Package no longer supported.' }}"
+ msg=${{ github.event.inputs.message || 'Package no longer supported.' }}
78
79
# Deprecate the packages on `npm`:
80
for pkg in $npm_names; do
0 commit comments