Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
423 views
in Technique[技术] by (71.8m points)

.net - GItLab YAML to deploy to IIS

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...