标签: groovy yaml gitlab-ci pipeline
我想执行一个Groovy文件并在我的gitlab管道中运行它。我已经在管道代码中放入了以下阶段。
post_deploy: stage: deploy image: groovy:2.4-jdk8 script: - groovy new_python_deployApp.groovy
管道成功运行,但是groovy脚本中的函数未执行。也许只是读取文件?有什么办法可以真正执行它?