Skip to content

Commit 9abc9fb

Browse files
authored
Fix repo and change to double quotes
1 parent 5de8918 commit 9abc9fb

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
@@ -79,7 +79,7 @@ jobs:
7979
# Deprecate the packages on `npm`:
8080
for pkg in $npm_names; do
8181
echo "Deprecating $pkg..."
82-
npm deprecate $pkg '$msg'
82+
npm deprecate $pkg "$msg"
8383
done
8484
8585
# Deprecate the packages on `GitHub` by adding a section to the `README.md` file:
@@ -104,7 +104,7 @@ jobs:
104104
git commit -m "Deprecate $repo"
105105
106106
# Push the changes:
107-
git push "https://$GITHUB_ACTOR:$GITHUB_TOKEN@github.com/$repo.git" main
107+
git push "https://$GITHUB_ACTOR:$GITHUB_TOKEN@github.com/stdlib-js/$repo.git" main
108108
109109
# Clean up:
110110
cd ..

0 commit comments

Comments
 (0)