workflow: upload result as artifact
This commit is contained in:
parent
8209ff70ff
commit
6f5e4a2ebf
2 changed files with 22 additions and 1 deletions
14
.github/workflows/build-machines-and-homes.yml
vendored
14
.github/workflows/build-machines-and-homes.yml
vendored
|
@ -75,6 +75,13 @@ jobs:
|
|||
run: |
|
||||
nix run github:zhaofengli/attic push main result
|
||||
|
||||
- name: upload result
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: ${{ matrix.machine }}-${{ matrix.os }}
|
||||
path: complement_test_results.jsonl
|
||||
if-no-files-found: error
|
||||
|
||||
build-homes:
|
||||
strategy:
|
||||
matrix:
|
||||
|
@ -133,3 +140,10 @@ jobs:
|
|||
- name: cache result
|
||||
run: |
|
||||
nix run github:zhaofengli/attic push main result
|
||||
|
||||
- name: upload result
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: ${{ matrix.home }}-${{ matrix.os }}
|
||||
path: complement_test_results.jsonl
|
||||
if-no-files-found: error
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue