場景:的TeamCity - 的setParameter不更新值永久存儲在參數
需要以TeamCity的Configuration Variable
"setParameter"
,這樣我就可以使用這個值執行build step
下一次。
我已成立了一個腳本:
export current_build_date_format="+%%Y-%%m-%%d"
export current_build_date="$(date $current_build_date_format)"
echo "##teamcity[setParameter name='latestDeploymentDate' value='$current_build_date']"
當我在下面的步驟呼應,它正確地打印出例如'2016-11-07'
但是,當我去看看參數的值Teamcity的價值仍然是最初的。
我在build agent
上運行腳本not on the same server
作爲Teamcity。這可能是我得到這種行爲的原因嗎?或者是'setParameter'
不是爲了永久存儲?
在此先感謝