Skip to content

Commit 4463cd7

Browse files
authored
update the release script to use git ssh urls (#328)
1 parent 7f1031f commit 4463cd7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/release.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ git add dist -f
2222
git commit -m "build $VERSION"
2323

2424
# push commit so it exists on GitHub when we run gh-release
25-
git push https://github.com/Esri/esri-leaflet-geocoder gh-release
25+
git push git@github.com:Esri/esri-leaflet-geocoder.git gh-release
2626

2727
# create a ZIP archive of the dist files
2828
zip -r $NAME-v$VERSION.zip dist
@@ -36,4 +36,4 @@ npm publish
3636
# checkout master and delete release branch locally and on GitHub
3737
git checkout master
3838
git branch -D gh-release
39-
git push https://github.com/Esri/esri-leaflet-geocoder :gh-release
39+
git push git@github.com:Esri/esri-leaflet-geocoder.git :gh-release

0 commit comments

Comments
 (0)