From 2b75341cfc3d9a5dac1cdd4b2294e13e9ef7ba63 Mon Sep 17 00:00:00 2001 From: juner Date: Thu, 4 Jun 2026 10:58:54 +0900 Subject: [PATCH 1/2] fix(ci): pack Interpreter without ToolPackageRuntimeIdentifiers in publish job --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 40bc24a..8d6b439 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -96,7 +96,7 @@ jobs: - name: Pack Libraries run: | - dotnet pack Interpreter/Esolang.Piet.Interpreter.csproj -c Release -o artifacts/aot --no-build + dotnet pack Interpreter/Esolang.Piet.Interpreter.csproj -c Release -o artifacts/aot -p:ToolPackageRuntimeIdentifiers="" dotnet pack Generator/Esolang.Piet.Generator.csproj -c Release -o artifacts/nuget --no-build dotnet pack Parser/Esolang.Piet.Parser.csproj -c Release -o artifacts/nuget --no-build dotnet pack Processor/Esolang.Piet.Processor.csproj -c Release -o artifacts/nuget --no-build From 71cbccc31788f817821d41bf1c83fad0270ba324 Mon Sep 17 00:00:00 2001 From: juner Date: Thu, 4 Jun 2026 10:59:11 +0900 Subject: [PATCH 2/2] fix(ci): restore --no-build flag for Interpreter pack in publish job --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8d6b439..9720d85 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -96,7 +96,7 @@ jobs: - name: Pack Libraries run: | - dotnet pack Interpreter/Esolang.Piet.Interpreter.csproj -c Release -o artifacts/aot -p:ToolPackageRuntimeIdentifiers="" + dotnet pack Interpreter/Esolang.Piet.Interpreter.csproj -c Release -o artifacts/aot --no-build -p:ToolPackageRuntimeIdentifiers="" dotnet pack Generator/Esolang.Piet.Generator.csproj -c Release -o artifacts/nuget --no-build dotnet pack Parser/Esolang.Piet.Parser.csproj -c Release -o artifacts/nuget --no-build dotnet pack Processor/Esolang.Piet.Processor.csproj -c Release -o artifacts/nuget --no-build