Skip to content

Commit

Permalink
merge from develop
Browse files Browse the repository at this point in the history
  • Loading branch information
luca-domenichini committed Dec 13, 2023
2 parents 28e2d2f + 7a6ab46 commit e57ddff
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 4 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/dotnet-develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Setup .NET
- name: Setup .NET6
uses: actions/setup-dotnet@v2
with:
dotnet-version: 6.0.x
- name: Setup .NET8
uses: actions/setup-dotnet@v2
with:
dotnet-version: 8.0.x
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/dotnet-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Setup .NET
- name: Setup .NET6
uses: actions/setup-dotnet@v2
with:
dotnet-version: 6.0.x
- name: Setup .NET8
uses: actions/setup-dotnet@v2
with:
dotnet-version: 8.0.x
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/dotnet-prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@ jobs:
id: version
run: echo "::set-output name=PRODUCT_VERSION::${{ env.VERSION_MAJOR }}.${{ env.VERSION_MINOR }}.${{ steps.date.outputs.date }}.${{ github.run_attempt }}${{ env.VERSION_SUFFIX }}"
- uses: actions/checkout@v3
- name: Setup .NET
- name: Setup .NET6
uses: actions/setup-dotnet@v2
with:
dotnet-version: 6.0.x
- name: Setup .NET8
uses: actions/setup-dotnet@v2
with:
dotnet-version: 8.0.x
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/dotnet-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@ jobs:
id: version
run: echo "::set-output name=PRODUCT_VERSION::${{ env.VERSION_MAJOR }}.${{ env.VERSION_MINOR }}.${{ steps.date.outputs.date }}.${{ github.run_attempt }}${{ env.VERSION_SUFFIX }}"
- uses: actions/checkout@v3
- name: Setup .NET
- name: Setup .NET6
uses: actions/setup-dotnet@v2
with:
dotnet-version: 6.0.x
- name: Setup .NET8
uses: actions/setup-dotnet@v2
with:
dotnet-version: 8.0.x
Expand Down

0 comments on commit e57ddff

Please sign in to comment.