Bitbucket管道未显示环境变量的内容

时间:2020-07-04 18:54:48

标签: bitbucket-pipelines

image: python:3.7.3 

pipelines:

  branches:
    Server:
    - step: 
       name: Test
       script:
          - echo $MYTEST

我的管道显示以下内容:

echo $MYTEST

+ echo $MYTEST
$MYTEST

该变量是“存储库变量”,名为MYTEST

我对 node 图像执行了相同的过程,并且工作正常。因为这是我使用的python项目,但是环境变量似乎不起作用。

我想,如果我需要一些bash命令,我不能使用纯python docker镜像,对吗?

0 个答案:

没有答案