企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
# This folder is cached between builds # http://docs.gitlab.com/ce/ci/yaml/README.html#cache # cache: # paths: # - vendor/ # This is a basic example for a gem or script which doesn't use # services such as redis or postgres before_script: - php -v - pwd stages: - deploy_test # 部署测试 deploy_test: stage: deploy_test script: - echo "部署测试环境" - git fetch origin - git reset --hard origin/develop - find . -name ".git" | xargs rm -Rf - cp -R ./ /www/wwwroot/wap only: - develop