mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-14 09:12:57 -07:00
more wip
This commit is contained in:
parent
370c845288
commit
23d8ef00a9
1 changed files with 29 additions and 1 deletions
30
.github/workflows/build.yml
vendored
30
.github/workflows/build.yml
vendored
|
@ -36,4 +36,32 @@ jobs:
|
||||||
- name: Run Unit Tests
|
- name: Run Unit Tests
|
||||||
run: |
|
run: |
|
||||||
cd src/Ombi
|
cd src/Ombi
|
||||||
dotnet test
|
dotnet test --logger trx --results-directory "TestResults"
|
||||||
|
|
||||||
|
- name: Upload dotnet test results
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: dotnet-results-${{ matrix.dotnet-version }}
|
||||||
|
path: TestResults-${{ matrix.dotnet-version }}
|
||||||
|
# Use always() to always run this step to publish test results when there are test failures
|
||||||
|
if: ${{ always() }}
|
||||||
|
|
||||||
|
publish:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
# needs: [build]
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
include:
|
||||||
|
- os: win10-x64
|
||||||
|
format: zip
|
||||||
|
compression: zip
|
||||||
|
- os: linux-x64
|
||||||
|
format: tar.gz
|
||||||
|
compression: tar
|
||||||
|
steps:
|
||||||
|
- name: Publish Backend ${{ matrix.os }}
|
||||||
|
run: |
|
||||||
|
cd src/Ombi
|
||||||
|
dotnet publish -c Release -r ${{ matrix.os }} -o "${{ matrix.os }}" --self-contained true -p:PublishSingleFile=true
|
||||||
|
|
||||||
|
#https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#using-environment-variables-in-a-matrix
|
Loading…
Add table
Add a link
Reference in a new issue