gpt4 book ai didi

bitbucket-pipelines - 更改管道 bitbucket 中的目录

转载 作者:行者123 更新时间:2023-12-03 23:35:58 24 4
gpt4 key购买 nike

我的文件夹结构:

-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 Pipeline 在一个 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

关于bitbucket-pipelines - 更改管道 bitbucket 中的目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56803264/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com