Skip to content

Commit

Permalink
fix(CICD): Fixed build-dotnet and publish workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
cdavernas committed May 27, 2024
1 parent 92fdcb6 commit 28c0338
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: ['6.0.x' ]
dotnet-version: ['8.0.x' ]

steps:
- name: Checkout
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore "./Synapse.sln"
- name: Build
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
- name: Setup
uses: actions/setup-dotnet@v2
with:
dotnet-version: 6.0.x
dotnet-version: 8.0.0x
- name: Restore
run: dotnet restore
- name: Build
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
- name: Setup
uses: actions/setup-dotnet@v2
with:
dotnet-version: 6.0.x
dotnet-version: 8.0.0x
- name: Restore
run: dotnet restore
- name: Build
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:
- name: Setup
uses: actions/setup-dotnet@v2
with:
dotnet-version: 6.0.x
dotnet-version: 8.0.0x
- name: Restore
run: dotnet restore
- name: Build
Expand Down Expand Up @@ -238,7 +238,7 @@ jobs:
- name: Setup
uses: actions/setup-dotnet@v2
with:
dotnet-version: 6.0.x
dotnet-version: 8.0.0x
- name: Restore
run: dotnet restore
- name: Build
Expand Down Expand Up @@ -267,7 +267,7 @@ jobs:
- name: Setup
uses: actions/setup-dotnet@v2
with:
dotnet-version: 6.0.x
dotnet-version: 8.0.0x
- name: Restore
run: dotnet restore
- name: Build
Expand Down

0 comments on commit 28c0338

Please sign in to comment.