artifacts upload with matrix vars
All checks were successful
First CI / build (linux-x64) (push) Successful in 1m5s
First CI / build (win-x64) (push) Successful in 1m9s

This commit is contained in:
mykola-derevianko
2025-11-21 11:15:29 +01:00
parent 4f36e1b9c7
commit 331ea918d5

View File

@@ -14,3 +14,9 @@ jobs:
dotnet-version: "8.0.x" dotnet-version: "8.0.x"
- run: dotnet restore - run: dotnet restore
- run: dotnet publish -o app -r ${{ matrix.rid }} --sc /p:PublishSingleFile=true - run: dotnet publish -o app -r ${{ matrix.rid }} --sc /p:PublishSingleFile=true
- name: upload artifact
uses: actions/upload-artifact@v4
with:
name: app-${{ matrix.rid }}
path: app/${{ matrix.rid }}