Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/HannoZ/Lexicala.NET
Browse files Browse the repository at this point in the history
  • Loading branch information
HannoZ committed Nov 18, 2022
2 parents 904adfc + 4f90f20 commit 6b961fd
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
- name: Setup .NET Core 7
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
dotnet-version: 7.0.x
- name: Install dependencies
run: dotnet restore ./source/Lexicala.NET.sln
- name: Build
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/package-Ms_DI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
- name: Setup .NET Core 7
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
dotnet-version: 7.0.x
- name: Install dependencies
run: dotnet restore ./source/Lexicala.NET.sln
- name: Build
run: dotnet build ./source/Lexicala.NET.sln --configuration Release --no-restore
- name: Test
run: dotnet test ./source/Lexicala.NET.sln --no-restore --verbosity normal
- name: Publish to Nuget
uses: brandedoutcast/publish-nuget@v2.5.5
uses: alirezanet/publish-nuget@v3.0.4
with:
PROJECT_FILE_PATH: ./source/Lexicala.NET.MicrosoftDependencyInjection/Lexicala.NET.MicrosoftDependencyInjection.csproj
NUGET_KEY: ${{secrets.NUGET_API_KEY}}
6 changes: 3 additions & 3 deletions .github/workflows/package-autofac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
- name: Setup .NET Core 7
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
dotnet-version: 7.0.x
- name: Install dependencies
run: dotnet restore ./source/Lexicala.NET.sln
- name: Build
run: dotnet build ./source/Lexicala.NET.sln --configuration Release --no-restore
- name: Test
run: dotnet test ./source/Lexicala.NET.sln --no-restore --verbosity normal
- name: Publish to Nuget
uses: brandedoutcast/publish-nuget@v2.5.5
uses: alirezanet/publish-nuget@v3.0.4
with:
PROJECT_FILE_PATH: ./source/Lexicala.NET.Autofac/Lexicala.NET.Autofac.csproj
NUGET_KEY: ${{secrets.NUGET_API_KEY}}

0 comments on commit 6b961fd

Please sign in to comment.