私は、Bitbucketパイプライン機能を使用して、node.jsプロジェクトをHerokuにデプロイしようとしています。 (文書から取られた)スクリプトは次のとおりです。Herokuがbitbucketパイプラインを使用してデプロイ
+ git push https://heroku:[email protected]/$HEROKU_APP_NAME.git master
fatal: remote part of refspec is not a valid name in .git
私が間違っているの何を:私はしかし、私は次のエラーを取得していますAPIキーとプロジェクト名にenviorment変数を設定している
image: node:6
clone:
depth: full
pipelines:
default:
- step:
script:
- npm install
- git push https://heroku:[email protected]/$HEROKU_APP_NAME.git master
ここに?