diff --git a/gh-pages-deploy.sh b/gh-pages-deploy.sh old mode 100644 new mode 100755 index 9b21154..8ad24c7 --- a/gh-pages-deploy.sh +++ b/gh-pages-deploy.sh @@ -4,16 +4,19 @@ set -e # build -npm run build +npx nuxi generate # navigate into the build output directory -cd dist +cd .output/public +touch .nojekyll # if you are deploying to a custom domain echo 'mave.dev' > CNAME git init git add -A +git config --local user.email "rakantor.dev@gmail.com" +git config --local user.name "Rakantor" git commit -m 'deploy' # if you are deploying to https://.github.io