本解决方案是笔者通过Github action运行项目时报错的解决方案,如果是本地运行报此错,未必有效果。
remote: Write access to repository not granted.
fatal: unable to access 'https://github.com/xxx/xxx/': The requested URL returned error: 403
Error: Process completed with exit code 128.
在经历N多次尝试后,终于绿了
最终效果
替换之后打开此链接:https://github.com/xxx/yyy/settings/actions xxx替换为自己GitHub的用户名,yyy替换为自己仓库的名字 当然也可以直接在该仓库中选择Settings,然后左侧选择Actions,选择General。 拖到下面找到Workflow permissions,按下图示选择,完成后点save即可
因为我运行的代码里有
git remote set-url origin https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}
所以需要添加token 添加方式:通过此链接打开如图所示界面,当然也可以按照左上角黄框路径来选择。https://github.com/settings/tokens?type=beta
点击Generate new token 这些随便填
这个根据实际情况,我选的该项目
Permissions这里要注意修改此项:
下面此项可能有用,第一遍弄得时候改了access,懒得弄第二遍测试了 为保一次成功,最好弄上。
然后下面generate token即可。