Skip to content

Bump Microsoft.EntityFrameworkCore.Relational from 8.0.0-preview.7.23375.4 to 8.0.0-rc.1.23419.6 in /templates/OnionArchitectureDotNetMaui #168

Bump Microsoft.EntityFrameworkCore.Relational from 8.0.0-preview.7.23375.4 to 8.0.0-rc.1.23419.6 in /templates/OnionArchitectureDotNetMaui

Bump Microsoft.EntityFrameworkCore.Relational from 8.0.0-preview.7.23375.4 to 8.0.0-rc.1.23419.6 in /templates/OnionArchitectureDotNetMaui #168

Workflow file for this run

name: .NET
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.x
- name: Pack
run: dotnet pack VladislavAntonyukDotnetTemplates.csproj -c Release -p:PackageVersion="3.0.${{github.run_number}}-pre1"
- name: Publish NuGet
run: dotnet nuget push **/bin/Release/*.nupkg -k $NUGET_AUTH_TOKEN -s https://api.nuget.org/v3/index.json
if: github.ref == 'refs/heads/main'
env:
NUGET_AUTH_TOKEN: ${{ secrets.NUGET_API_KEY }}