mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-23 14:35:24 -07:00
ci: use the dotnet ver task everywhere
This commit is contained in:
parent
2f16b685c6
commit
914e9d745b
3 changed files with 7 additions and 1 deletions
3
.github/workflows/build.yml
vendored
3
.github/workflows/build.yml
vendored
|
@ -103,6 +103,9 @@ jobs:
|
||||||
format: tar.gz
|
format: tar.gz
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
- uses: actions/setup-dotnet@v1
|
||||||
|
with:
|
||||||
|
dotnet-version: '6.0.x'
|
||||||
|
|
||||||
- name: Nuget Cache
|
- name: Nuget Cache
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v2
|
||||||
|
|
2
.github/workflows/cypress.yml
vendored
2
.github/workflows/cypress.yml
vendored
|
@ -39,7 +39,7 @@ jobs:
|
||||||
|
|
||||||
- name: Start Backend
|
- name: Start Backend
|
||||||
run: |
|
run: |
|
||||||
nohup dotnet run -p ./src/Ombi -- --host http://*:3577 &
|
nohup dotnet run --project ./src/Ombi -- --host http://*:3577 &
|
||||||
- name: Start Frontend
|
- name: Start Frontend
|
||||||
run: |
|
run: |
|
||||||
nohup yarn --cwd ./src/Ombi/ClientApp start &
|
nohup yarn --cwd ./src/Ombi/ClientApp start &
|
||||||
|
|
3
.github/workflows/pr.yml
vendored
3
.github/workflows/pr.yml
vendored
|
@ -90,6 +90,9 @@ jobs:
|
||||||
format: tar.gz
|
format: tar.gz
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
- uses: actions/setup-dotnet@v1
|
||||||
|
with:
|
||||||
|
dotnet-version: '6.0.x'
|
||||||
|
|
||||||
- name: Nuget Cache
|
- name: Nuget Cache
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v2
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue