I have set up GitLab YAML file as below.
stages:
- build
- publish
before_script:
- "dotnet restore"
build:
stage: build
script:
- "dotnet build"
release:
stage: publish
only:
- master
artifacts:
paths:
- /publish
script:
- dotnet publish -c Release -o ../publish dotnetcore/dotnetcore.csproj
environment:
name: stage
url: http://localhost:8081/
but now I have to deploy this code to my IIS. I have added publish logic but this logic publishes the code in my staging environment(Created in GitLab).
Can anyone tell me How can I achieve this?
question from:
https://stackoverflow.com/questions/66058267/gitlab-yaml-to-deploy-to-iis 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…