Skip to content

Update ci-cd.yml

Update ci-cd.yml #6

Workflow file for this run

name: CI/CD
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
strategy:
fail-fast: false
matrix:
configuration: [Debug, Release]
os: [windows-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build/Publish app
run: dotnet publish --no-build -c ${{ matrix.configuration }}