Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 GitLab 中添加的代码 .net 核心和我的 Web 应用程序部署在 AWS Windows 实例 IIS 中。如何编写 yml 文件以在 IIS 中自动发布和部署我的代码。
如果可能的话,请分享您迄今为止尝试过的任何内容,我只是在这里分享高级步骤。
首先准备 .gitlab-ci.yml 文件,然后添加以下行
script: - bash .gitlab-deploy-dev.sh
在 .gitlab-deploy-dev.sh 你应该添加
ssh ec2-use@server 'git pull origin dev && aws s3://bucket/dev-config.json .............. '
然后运行管道