From 0279e1ff5bb2679e8586b33b01bc83b4f5d9d58c Mon Sep 17 00:00:00 2001 From: Damian Hickey Date: Wed, 22 Apr 2026 16:13:50 +0200 Subject: [PATCH] Fix release workflow: MTP test command and explicit container image tags --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6e3f17a..8990ea6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -64,7 +64,7 @@ jobs: run: dotnet build MicroStack.slnx -c Release --no-restore - name: Test - run: dotnet test MicroStack.slnx -c Release --no-build + run: dotnet test --project tests/MicroStack.Tests/MicroStack.Tests.csproj -c Release --no-build --filter-not-class MicroStack.Tests.ContainerSmokeTests - name: Pack NuGet packages run: dotnet pack src/MicroStack.Aspire.Hosting/MicroStack.Aspire.Hosting.csproj -c Release --no-build --output ./packages @@ -94,6 +94,7 @@ jobs: -c Release -p:ContainerRegistry=ghcr.io -p:ContainerRepository=${{ github.repository_owner }}/microstack + -p:ContainerImageTags='"${{ inputs.version }};latest"' - name: Create GitHub Release uses: softprops/action-gh-release@v2