Skip to content

Commit

Permalink
Merge branch 'dev' into feat/net-8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaioru authored Oct 10, 2023
2 parents cd6db1f + e358a7d commit 3fb67b0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,16 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
- uses: actions/cache@v3
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
restore-keys: |
${{ runner.os }}-nuget
${{ runner.os }}-nuget-
- run: dotnet restore --locked-mode
- name: Build
run: dotnet build --configuration Release
- name: Test
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/publish-nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,16 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
- uses: actions/cache@v3
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
restore-keys: |
${{ runner.os }}-nuget
${{ runner.os }}-nuget-
- run: dotnet restore --locked-mode
- name: Pack
run: dotnet pack --configuration Release --version-suffix "nightly.${{ needs.setup.outputs.date }}" --output artifacts
- name: Publish
Expand Down Expand Up @@ -69,15 +70,16 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
- uses: actions/cache@v3
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
restore-keys: |
${{ runner.os }}-nuget
${{ runner.os }}-nuget-
- run: dotnet restore --locked-mode
- name: Install EntityFramework Core tools
run: dotnet tool install --global dotnet-ef
- name: Publish (apps)
Expand Down

0 comments on commit 3fb67b0

Please sign in to comment.