Output name for executable

This commit is contained in:
2022-12-19 17:33:13 +01:00
parent 90ca560ad3
commit 8f3f55c701

View File

@@ -11,9 +11,11 @@ jobs:
- runtime: win-x64 - runtime: win-x64
runner: windows-latest runner: windows-latest
name: windows name: windows
outputname: Alma.exe
- runtime: linux-x64 - runtime: linux-x64
runner: ubuntu-latest runner: ubuntu-latest
name: linux name: linux
outputname: Alma
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Setup dotnet - name: Setup dotnet
@@ -27,7 +29,7 @@ jobs:
- uses: actions/upload-artifact@v3 - uses: actions/upload-artifact@v3
with: with:
name: alma-${{ matrix.target.name }} name: alma-${{ matrix.target.name }}
path: app/Alma path: app/${{ matrix.target.outputname }}
release: release:
needs: build needs: build