commit 87bd0b11a131c418c66a3a7901cb33aa73f674cf parent 8655e850aa6a1cad544a4a937b6bfd25553d6ea7 Author: ashermorgan <59518073+ashermorgan@users.noreply.github.com> Date: Sun, 22 Aug 2021 10:21:48 -0700 Update deploy script Diffstat:
| M | scripts/deploy.sh | | | 4 | +++- |
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/scripts/deploy.sh b/scripts/deploy.sh @@ -1,5 +1,7 @@ #!/usr/bin/env sh +# https://cli.vuejs.org/guide/deployment.html#github-pages + # abort on errors set -e @@ -10,6 +12,6 @@ cd dist git init git add -A git commit -m 'deploy' -git push -f https://github.com/ashermorgan/running-tools master:gh-pages +git push -f git@github.com:ashermorgan/running-tools.git master:gh-pages cd -