From 06fd0731f6a507fa11f7b9936275aa64d44e2c37 Mon Sep 17 00:00:00 2001 From: Dominic Cerquetti Date: Sat, 30 Nov 2024 22:40:16 -0500 Subject: [PATCH] build: fix publish path, revert wildcard - ughhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh --- .github/workflows/dotnet.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 7aa660d..106beb6 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -57,9 +57,10 @@ jobs: - name: Publish run: dotnet publish --no-build -c Release /p:PublishProfile=FolderProfile .\DiztinGUIsh\ - - uses: vimtor/action-zip@v1 + - uses: vimtor/action-zip@v1.2 with: - files: DiztinGUIsh\bin\Release\*\publish\ + # files: DiztinGUIsh\bin\Release\*\publish\ # would be cooler if we could do this but... alas... + files: DiztinGUIsh\bin\Release\net8.0-windows\publish\ dest: ${{ steps.ver.outputs.ver }}.zip - name: Upload Artifact