Skip to content

Commit 474df3a

Browse files
committed
Add quotes
1 parent 0d17424 commit 474df3a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/deprecate_packages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
# Deprecate the specified packages on `npm` and the respective `GitHub` repositories:
5757
- name: 'Deprecate packages'
5858
run: |
59-
pkgs=${{ github.event.inputs.packages }}
59+
pkgs='${{ github.event.inputs.packages }}'
6060
npm_names=""
6161
github_repos=""
6262
for pkg in $pkgs; do
@@ -74,7 +74,7 @@ jobs:
7474
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc
7575
7676
# Construct the deprecation message:
77-
msg=${{ github.event.inputs.message || 'Package no longer supported.' }}
77+
msg='${{ github.event.inputs.message || "Package no longer supported." }}'
7878
7979
# Deprecate the packages on `npm`:
8080
for pkg in $npm_names; do

0 commit comments

Comments
 (0)