Skip to content
This repository has been archived by the owner on Jun 4, 2024. It is now read-only.

Commit

Permalink
Fix CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jb-intellinet committed Mar 27, 2024
1 parent dac327d commit e86b3f7
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/dotnet-core.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: .NET Core Builds
name: .NET CI

on:
push:
branches: [ master ]
branches: [ "*" ]
pull_request:
branches: [ dev ]
branches: [ master ]

jobs:
build:
Expand All @@ -15,12 +15,12 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Setup .NET 6.0
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.*
- name: Install dependencies
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration ${{ matrix.build-config }} --no-restore
Expand Down

0 comments on commit e86b3f7

Please sign in to comment.