AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
编辑 `.gitlab-ci.yml` # 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.chaojijuxing.cn only: - develop