From 8f3f55c701d945e88c0843ae7461794fa1545a8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81d=C3=A1m=20Kov=C3=A1cs?= Date: Mon, 19 Dec 2022 17:33:13 +0100 Subject: [PATCH] Output name for executable --- .github/workflows/github-actions-demo.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/github-actions-demo.yml b/.github/workflows/github-actions-demo.yml index e9f1d81..4c83a72 100644 --- a/.github/workflows/github-actions-demo.yml +++ b/.github/workflows/github-actions-demo.yml @@ -11,9 +11,11 @@ jobs: - runtime: win-x64 runner: windows-latest name: windows + outputname: Alma.exe - runtime: linux-x64 runner: ubuntu-latest name: linux + outputname: Alma steps: - uses: actions/checkout@v3 - name: Setup dotnet @@ -27,7 +29,7 @@ jobs: - uses: actions/upload-artifact@v3 with: name: alma-${{ matrix.target.name }} - path: app/Alma + path: app/${{ matrix.target.outputname }} release: needs: build