We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7282626 commit 5de8918Copy full SHA for 5de8918
1 file changed
.github/workflows/deprecate_packages.yml
@@ -79,7 +79,7 @@ jobs:
79
# Deprecate the packages on `npm`:
80
for pkg in $npm_names; do
81
echo "Deprecating $pkg..."
82
- npm deprecate $pkg $msg
+ npm deprecate $pkg '$msg'
83
done
84
85
# Deprecate the packages on `GitHub` by adding a section to the `README.md` file:
@@ -104,7 +104,7 @@ jobs:
104
git commit -m "Deprecate $repo"
105
106
# Push the changes:
107
- git push origin main
+ git push "https://$GITHUB_ACTOR:$GITHUB_TOKEN@github.com/$repo.git" main
108
109
# Clean up:
110
cd ..
0 commit comments