feat: Upgrade Ombi to .NET 6 (#4390)

* chore: updated tfm to net6

* chore: updated main packages

* chore: fixed some warnings

* core: Added workflow_dispatch to some of the CI pipelines [skip ci] (#4392)

* chore: bump the net version

* ci: use the dotnet ver task everywhere
This commit is contained in:
Jamie 2021-11-09 21:54:51 +00:00 committed by GitHub
commit 719eb7dbe3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
60 changed files with 109 additions and 109 deletions

View file

@ -38,7 +38,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-dotnet@v1
with:
dotnet-version: '5.0.x'
dotnet-version: '6.0.x'
- name: Nuget Cache
uses: actions/cache@v2
@ -103,6 +103,9 @@ jobs:
format: tar.gz
steps:
- uses: actions/checkout@v2
- uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
- name: Nuget Cache
uses: actions/cache@v2

View file

@ -19,7 +19,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
dotnet-version: 6.0.x
- uses: actions/setup-node@v2
with:
node-version: '14'
@ -39,7 +39,7 @@ jobs:
- name: Start Backend
run: |
nohup dotnet run -p ./src/Ombi -- --host http://*:3577 &
nohup dotnet run --project ./src/Ombi -- --host http://*:3577 &
- name: Start Frontend
run: |
nohup yarn --cwd ./src/Ombi/ClientApp start &

View file

@ -32,7 +32,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-dotnet@v1
with:
dotnet-version: '5.0.x'
dotnet-version: '6.0.x'
- name: Nuget Cache
uses: actions/cache@v2
@ -90,6 +90,9 @@ jobs:
format: tar.gz
steps:
- uses: actions/checkout@v2
- uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
- name: Nuget Cache
uses: actions/cache@v2