当我将存储库从 master 分支推送到 gh-pages 时,npm run publish 没有做任何事情

问题描述 投票:0回答:0

尝试在 VS Code 中运行 publish.sh 文件时

#!/usr/bin/env sh

# abort on errors
set -e

# build
npm run docs:build

# navigate into the build output directory
cd docs/.vuepress/dist

# if you are deploying to a custom domain
# echo 'www.example.com' > CNAME

git init
git add -A
git commit -m 'deploy'

# if you are deploying to https://<USERNAME>.github.io
# git push -f [email protected]:boldak/<USERNAME>.github.io.git master

# if you are deploying to https://<USERNAME>.github.io/<REPO>
git push -f https://github.com/shunichkaaaa/edu_db_labs_IO-12_Group-4 master:gh-pages

cd -

我遇到了这个问题,npm run 完全可以做任何事情。它不会返回错误,也不会在 GitHub 上创建第二个分支。

console output

根据其中一个网站的建议,我尝试将 npm ignore-scripts 值设置为 false。 npm config set ignore-scripts false 但它已经被设置为 false.

我可以在本地托管我的服务,同时使用 npm run docs:dev.

从 VS Code 终端切换到 Windows 命令提示符只是重复了之前的问题。

所以对这个有什么意见吗??

node.js github npm github-pages deploying
© www.soinside.com 2019 - 2024. All rights reserved.