Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions workflow-templates/im-build-dotnet-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,13 @@ jobs:
env:
DOTNET_INSTALL_DIR: './.dotnet'

# TODO: If the project contains internal nuget packages, uncomment and update the orgs with the needed organizations
# - name: Authenticate with GitHub Packages
# uses: im-open/authenticate-with-gh-package-registries@v1.1
# with:
# read-pkg-token: ${{ secrets.READ_PKG_TOKEN }} # This is an org-level secret
# orgs: ''

- name: dotnet build
id: build
run: dotnet build ${{ env.SOLUTION_FILE }} --configuration Release
Expand Down Expand Up @@ -541,6 +548,13 @@ jobs:
env:
DOTNET_INSTALL_DIR: './.dotnet'

# TODO: If the project contains internal nuget packages, uncomment and update the orgs with the needed organizations
# - name: Authenticate with GitHub Packages
# uses: im-open/authenticate-with-gh-package-registries@v1.1
# with:
# read-pkg-token: ${{ secrets.READ_PKG_TOKEN }} # This is an org-level secret
# orgs: ''

# TODO: If the project being built publishes to Azure Event Hubs, this step is needed to build an AsyncAPI Document.
# It runs a console application that calls the Mktp.Messaging.Events.Publisher.AsyncApi library.
# See https://github.com/im-practices/cloud-events/blob/main/src/Mktp.Messaging.Events.Publisher.AsyncApi/README.md for more information.
Expand Down