v5.1
All checks were successful
First CI / build (linux-x64) (push) Successful in 1m33s
First CI / build (win-x64) (push) Successful in 1m38s

This commit is contained in:
LukaszKrawczykDev
2025-11-20 15:54:57 +01:00
parent 0309924e9e
commit 4e9fa0aea0

View File

@@ -4,27 +4,23 @@ on: [push]
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy:
matrix:
rid: [ "win-x64", "linux-x64" ]
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: actions/setup-dotnet@v3 - uses: actions/setup-dotnet@v3
with: with:
dotnet-version: '8.0.x' dotnet-version: '8.0.x'
- run: dotnet restore - run: dotnet restore
- run: dotnet build - name: Publish ${{ matrix.rid }}
- run: dotnet test run: dotnet publish -o app/${{ matrix.rid }} -r ${{ matrix.rid }} --sc /p:PublishSingleFile=true
- run: dotnet publish -o app -r linux-x64 --sc /p:PublishSingleFile=true,AssemblyName=app - name: Archive ${{ matrix.rid }}
- run: tar cf app.tar app/ run: |
- uses: actions/upload-artifact@v3 mkdir -p artifacts
tar cf artifacts/app-${{ matrix.rid }}.tar -C app/${{ matrix.rid }} .
- name: Upload artifact ${{ matrix.rid }}
uses: actions/upload-artifact@v3
with: with:
name: app name: app-${{ matrix.rid }}
path: app.tar path: artifacts/app-${{ matrix.rid }}.tar
test:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/download-artifact@v3
with:
name: app
- run: ls -R .
- run: tar xf app.tar
- run: ./app/app