Skip to content

Commit

Permalink
[Actions] Updated .github/actions/dotnet/action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
credfeto committed Dec 6, 2024
1 parent e329407 commit 1c9c9d6
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/actions/dotnet/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ inputs:
SLEET_FEED:
description: 'Sleet feed to push packages to'
required: false
DOTNET_DOCKER_PLATFORM:
description: 'Dotnet docker platform (e.g. linux-arm64)'
required: false

# General
BUILD_VERSION:
Expand Down Expand Up @@ -165,14 +168,14 @@ runs:
# Publish ready for deploy
############################################################################################################

- name: "Dotnet: Publish Packages (linux-arm64)"
- name: "Dotnet: Publish Packages"
if: inputs.PROJECT_TO_PUBLISH != ''
uses: ./.github/actions/dotnet-publish
with:
PRODUCTION_BUILD: ${{inputs.PRODUCTION_BUILD}}
BUILD_VERSION: ${{inputs.BUILD_VERSION}}
RELEASE_NOTES: ${{inputs.RELEASE_NOTES}}
PLATFORM: "linux-arm64"
PLATFORM: ${{inputs.DOTNET_DOCKER_PLATFORM}}
PROJECT_TO_PUBLISH: ${{inputs.PROJECT_TO_PUBLISH}}

############################################################################################################
Expand Down

0 comments on commit 1c9c9d6

Please sign in to comment.