Bitbucket Pipeline을 사용하여 Heroku에 자동 배포
요점은 지금까지의
git push heroku master
(Heroku)와 git push origin develop
공식 사이트는 이쪽(매우 간단)
절차 1.
Bitbucket에 로그인 → 임의의 리포지토리에 들어가 「설정」→「Environment variables」를 선택.
여기에 HEROKU_API_KEY 및 HEROKU_APP_NAME을 입력하세요.
HEROKU_API_KEY...명령으로
git push origin develop
HEROKU_APP_NAME ... 마찬가지로 heroku auth:token
에서이 앱을 선택2 단계.
bitbucket-pipelines.yml 만들기 → Heroku로 Push.
아래의 파일은 Bitbucket의 공식 사이트에 있습니다. 하단 URL (- git push ... 곳)에 HEROKU_API_KEY와 HEROKU_APP_NAME을 채우면 OK.
bitbucket-pipelines.yml
# This is a sample build configuration for PHP.
# Check our guides at https://confluence.atlassian.com/x/e8YWN for more examples.
# Only use spaces to indent your .yml configuration.
# -----
# You can specify a custom docker image from Docker Hub as your build environment.
image: phpunit/phpunit:5.0.3
clone:
depth: full
pipelines:
default:
- step:
script: # Modify the commands below to build your repository.
- composer install
- git push https://heroku:[email protected]/$HEROKU_APP_NAME.git HEAD
그럼
Reference
이 문제에 관하여(Bitbucket Pipeline을 사용하여 Heroku에 자동 배포), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/ucc_black/items/01a36ad015be4dc7a864텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)