我是一個菜鳥博客,用的引導下從https://gohugo.io/tutorials/automated-deployments/「汽車與wercker部署」,我不知道我應該選擇哪個範圍我應該選擇使用wercker自動部署我的github頁面的範圍?
導向沒有提到它
here's the list of scopes from github
先謝謝!
我是一個菜鳥博客,用的引導下從https://gohugo.io/tutorials/automated-deployments/「汽車與wercker部署」,我不知道我應該選擇哪個範圍我應該選擇使用wercker自動部署我的github頁面的範圍?
導向沒有提到它
here's the list of scopes from github
先謝謝!
repo
權限應該足夠了。令牌或多或少只需要能夠爲您推送gh-pages
分支的新提交。
wercker創建後您的構建,讓我們在主分支說,你可以用https://github.com/leipert/step-git-push觸發部署,並將它推到GH-頁面分支:
deploy: steps: - install-packages: packages: git ssh-client - leipert/git-push: gh_oauth: $GIT_AUTH repo: gh-username/repo-name branch: gh-pages basedir: your-created-folder
儘管$ GIT_AUTH鍵被設置在環境變量。只需從您的Github個人設置下的個人訪問令牌中複製生成的密鑰,並完全控制私人存儲庫。
謝謝你的幫助 – rag