diff --git a/packages/docs/docs/guide/deploy.md b/packages/docs/docs/guide/deploy.md index c7b0c3cad4..21eaeceb8a 100644 --- a/packages/docs/docs/guide/deploy.md +++ b/packages/docs/docs/guide/deploy.md @@ -44,10 +44,10 @@ git add -A git commit -m 'deploy' # if you are deploying to https://.github.io -# git push -f git@github.com:/.github.io.git master +# git push -f git@github.com:/.github.io.git main # if you are deploying to https://.github.io/ -# git push -f git@github.com:/.git master:gh-pages +# git push -f git@github.com:/.git main:gh-pages cd - ``` @@ -85,7 +85,7 @@ deploy: github_token: $GITHUB_TOKEN # A token generated on GitHub allowing Travis to push code on you repository. Set in the Travis settings page of your repository, as a secure variable keep_history: true on: - branch: master + branch: main ``` ### GitLab Pages and GitLab CI @@ -114,7 +114,7 @@ pages: paths: - public only: - - master + - main ``` @@ -206,7 +206,7 @@ heroku buildpacks:set https://github.com/heroku/heroku-buildpack-static.git ``` bash # publish site -git push heroku master +git push heroku main # opens a browser to view the Dashboard version of Heroku CI heroku open