From a776437177b8cb88961638af86067406dcbb6a6b Mon Sep 17 00:00:00 2001 From: Rakantor Date: Tue, 25 Apr 2023 17:57:38 +0200 Subject: [PATCH] Update GitHub Pages deploy script --- gh-pages-deploy.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) mode change 100644 => 100755 gh-pages-deploy.sh 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