We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d17424 commit 474df3aCopy full SHA for 474df3a
1 file changed
.github/workflows/deprecate_packages.yml
@@ -56,7 +56,7 @@ jobs:
56
# Deprecate the specified packages on `npm` and the respective `GitHub` repositories:
57
- name: 'Deprecate packages'
58
run: |
59
- pkgs=${{ github.event.inputs.packages }}
+ pkgs='${{ github.event.inputs.packages }}'
60
npm_names=""
61
github_repos=""
62
for pkg in $pkgs; do
@@ -74,7 +74,7 @@ jobs:
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