Hello,
I'm trying to setup a continuous deployment pipeline for a Asp.Net Core app to our own hosted IIS server. I have searched around quite a bit but haven't found a solution thus far how this is achieved in Bitbucket Pipelines. I currently have the following pipeline:
image: mcr.microsoft.com/dotnet/core/sdk:3.1
pipelines:
branches:
master:
- step:
caches:
- dotnetcore
script:
- export PROJECT_NAME=
- export ASPNETCORE_ENVIRONMENT=Production
- dotnet restore
- dotnet build $PROJECT_NAME
- dotnet publish
- step:
name: Deploy to production
deployment: production
script:
- echo "Deploying to production"
I, however, have no clue as how to proceed from here. Is there anyone that might be able to assist me?
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.