在管道 bitbucket 中更改目录
Change directory in pipe line bitbucket
我的文件夹结构:
-backend
-frontend
我的reactapp放在frontend
目录下。
image: node:10.15.3
pipelines:
default:
- step:
caches:
- node
script: # Modify the commands below to build your repository.
- yarn install
- yarn test
- yarn build
这个失败了。如何转到 运行 的前端目录?
Bitbucket 管道 运行 在一个 bitbucket 云服务器中。
因此,与使用本地命令行界面类似,您可以使用 cd, mkdir
.
等命令进行导航
image: node:10.15.3
pipelines:
default:
- step:
caches:
- node
script: # Modify the commands below to build your repository.
- cd frontend
- yarn install
- yarn test
- yarn build
- cd ../ #if you need to go back
#Then,probably you will need to deploy your app, so you can use:
- apt-get update
- apt-get -qq install git-ftp
- git ftp push --user $FTP_USERNAME --passwd $FTP_PASSWORD $FTP_HOST
如果您需要测试 yml 文件的语法,try here
我的文件夹结构:
-backend
-frontend
我的reactapp放在frontend
目录下。
image: node:10.15.3
pipelines:
default:
- step:
caches:
- node
script: # Modify the commands below to build your repository.
- yarn install
- yarn test
- yarn build
这个失败了。如何转到 运行 的前端目录?
Bitbucket 管道 运行 在一个 bitbucket 云服务器中。
因此,与使用本地命令行界面类似,您可以使用 cd, mkdir
.
image: node:10.15.3
pipelines:
default:
- step:
caches:
- node
script: # Modify the commands below to build your repository.
- cd frontend
- yarn install
- yarn test
- yarn build
- cd ../ #if you need to go back
#Then,probably you will need to deploy your app, so you can use:
- apt-get update
- apt-get -qq install git-ftp
- git ftp push --user $FTP_USERNAME --passwd $FTP_PASSWORD $FTP_HOST
如果您需要测试 yml 文件的语法,try here