Update build.yml
This commit is contained in:
parent
adc716f67b
commit
c149c3f46f
|
@ -13,5 +13,5 @@ runs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: ${{ inputs.runtime }}-tests
|
name: tests-${{ inputs.runtime }}
|
||||||
path: _tests/net6.0/${{ inputs.runtime }}/publish/**/*
|
path: _tests/net6.0/${{ inputs.runtime }}/publish/**/*
|
||||||
|
|
|
@ -18,7 +18,7 @@ env:
|
||||||
VERSION: 4.0.0
|
VERSION: 4.0.0
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build_backend:
|
backend:
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Check out
|
- name: Check out
|
||||||
|
@ -75,7 +75,15 @@ jobs:
|
||||||
name: distribution
|
name: distribution
|
||||||
path: distribution/**/*
|
path: distribution/**/*
|
||||||
|
|
||||||
build_frontend:
|
# global.json Artifact
|
||||||
|
|
||||||
|
- name: Publish Distribution Artifact
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: global_json
|
||||||
|
path: global.json
|
||||||
|
|
||||||
|
frontend:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Check out
|
- name: Check out
|
||||||
|
@ -101,3 +109,20 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: ui
|
name: ui
|
||||||
path: _output/UI/**/*
|
path: _output/UI/**/*
|
||||||
|
|
||||||
|
unit_test_linux:
|
||||||
|
needs: backend
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Download global.json
|
||||||
|
uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
name: global_json
|
||||||
|
|
||||||
|
- name: Download Artifact
|
||||||
|
uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
name: tests-linux-x64
|
||||||
|
|
||||||
|
- name: Display structure of downloaded files
|
||||||
|
run: ls -R
|
||||||
|
|
Loading…
Reference in New Issue