lab7/.gitea/workflows/ci4.yml
Workflow config file is invalid. Please check your config file: yaml: line 9: found character that cannot start any token
hanusia d0564ed96f
Some checks failed
Second CI / build (push) Failing after 8s
Third CI / build (push) Successful in 46s
Fourth CI / build (push) Successful in 1m25s
Fourth CI / test (push) Successful in 9s
Update .gitea/workflows/ci4.yml
2024-11-22 13:28:50 +00:00

17 lines
379 B
YAML

name: Last 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