diff --git a/.github/actions/dotnet/action.yml b/.github/actions/dotnet/action.yml index bd9b7fb..9cdf299 100644 --- a/.github/actions/dotnet/action.yml +++ b/.github/actions/dotnet/action.yml @@ -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: @@ -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}} ############################################################################################################