Files
Lab7/.gitea/workflows/ci.yml
Mateusz Kozieł f8cf733adb
All checks were successful
First CI / build (linux-x64) (push) Successful in 58s
First CI / build (win-x64) (push) Successful in 1m3s
Change ci yaml file
2025-11-20 16:29:38 +02:00

16 lines
384 B
YAML

name: First CI
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
rid: [ "win-x64", "linux-x64" ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
- run: dotnet restore
- run: dotnet publish -o app -r ${{ matrix.rid }} --sc /p:PublishSingleFile=true