我想我已经遵循了所有步骤,使用我从GitHub中找到的GitHub操作在https://www.davideguida.com/how-to-deploy-blazor-webassembly-on-github-pages-using-github-actions/页面上部署Blazor组件
但在Deploy to Github Pages步骤中失败了
(Passed)
以下是错误描述
❓ FAQ/Wiki: https://github.com/JamesIves/github-pages-deploy-action/wiki
Support: https://github.com/JamesIves/github-pages-deploy-action/issues
⭐ Contribute: https://github.com/JamesIves/github-pages-deploy-action/blob/dev/CONTRIBUTING.md
Maintained by James Ives (https://jamesiv.es)
Checking configuration and starting deployment…
Deploying using ……
Configuring git…
/usr/bin/git init
Reinitialized existing Git repository in /home/runner/work/FirstBlazor/FirstBlazor/.git/
/usr/bin/git config user.name ngaisteve1
/usr/bin/git config user.email xxx@gmail.com
/usr/bin/git remote rm origin
/usr/bin/git remote add origin ***github.com/ngaisteve1/FirstBlazor.git
/usr/bin/git fetch --no-recurse-submodules
From https://github.com/ngaisteve1/FirstBlazor
* [new branch] master -> origin/master
Git configured…
Starting to commit changes…
/usr/bin/git ls-remote --heads ***github.com/ngaisteve1/FirstBlazor.git master | wc -l
136e7850750d3861e72a15355289952f94777c9b refs/heads/master
/usr/bin/git checkout --progress --force development
error: pathspec 'development' did not match any file(s) known to git
Running post deployment cleanup jobs… ️
/usr/bin/git worktree remove github-pages-deploy-action-temp-deployment-folder --force
fatal: 'github-pages-deploy-action-temp-deployment-folder' is not a working tree
##[error]The process '/usr/bin/git' failed with exit code 128
Deployment failed! ❌这是我的github回购- https://github.com/ngaisteve1/FirstBlazor
发布于 2020-07-05 18:20:20
您需要从development分支创建一个名为master的分支,并在存储库设置中将development分支设置为default分支。
这是因为您的gh-pages.yml文件有BASE_BRANCH: development和BRANCH: master
with:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
BASE_BRANCH: development # The branch the action should deploy from.
BRANCH: master # The branch the action should deploy to.
FOLDER: build/wwwroot # The folder the action should deploy.
SINGLE_COMMIT: true因此,部署将从development分支发生到master分支。
https://stackoverflow.com/questions/62734631
复制相似问题