From 1e8755ca2f570b075c8c56ba98561f5247f8dfce Mon Sep 17 00:00:00 2001 From: Johnny Date: Thu, 19 Oct 2023 16:01:18 +0200 Subject: [PATCH] upload artifact wildcard updated --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6a0a115..e2c09f8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -95,15 +95,15 @@ jobs: - uses: actions/upload-artifact@v3.1.3 with: name: windowsx86file - path: ${{ github.workspace }}\src\bin\Release\net8.0\win-x86\publish\*.zip + path: ${{ github.workspace }}\src\*arm64.zip - uses: actions/upload-artifact@v3.1.3 with: name: windowsx64file - path: ${{ github.workspace }}\src\bin\Release\net8.0\win-x64\publish\*.zip + path: ${{ github.workspace }}\src\*x64.zip - uses: actions/upload-artifact@v3.1.3 with: name: windowsarm64file - path: ${{ github.workspace }}\src\bin\Release\net8.0\win-arm64\publish\*.zip + path: ${{ github.workspace }}\src\*x86.zip create-release: needs: [build-macos, build-windows]