From c7b4fcddbac2157ef7d1e5bb1e99d08412f06fb6 Mon Sep 17 00:00:00 2001 From: James Ravenscroft Date: Sat, 5 Aug 2023 10:09:05 +0100 Subject: [PATCH] add .exe --- .github/workflows/build-commit.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-commit.yml b/.github/workflows/build-commit.yml index d00f132..ec59bd9 100644 --- a/.github/workflows/build-commit.yml +++ b/.github/workflows/build-commit.yml @@ -244,14 +244,14 @@ jobs: # Artifact name name: turbopilot-${{ runner.os }}-${{ runner.arch }}-${{ steps.short-sha.outputs.sha }}-${{ matrix.build }} # optional, default is artifact # A file, directory or wildcard pattern that describes what to upload - path: ${{github.workspace}}\\build\\bin\\Release\\turbopilot + path: ${{github.workspace}}\\build\\bin\\Release\\turbopilot.exe # The desired behavior if no files are found using the provided path. - name: package artifacts for release if: startsWith(github.ref, 'refs/tags/') run: | - 7z a ${{github.workspace}}\build\bin\Release\turbopilot-${{ runner.os }}-${{ runner.arch }}-${{ matrix.build }}.zip ${{github.workspace}}\\build\\bin\\Release\\turbopilot + 7z a ${{github.workspace}}\build\bin\Release\turbopilot-${{ runner.os }}-${{ runner.arch }}-${{ matrix.build }}.zip ${{github.workspace}}\\build\\bin\\Release\\turbopilot.exe - name: Convert backslashes