mirror of
https://codeberg.org/tmayoff/.dotfiles.git
synced 2025-12-06 08:48:34 -05:00
run nvd with uploaded artifacts
This commit is contained in:
parent
a5858dfc9d
commit
b2760e4402
1 changed files with 12 additions and 3 deletions
15
.github/workflows/main.yml
vendored
15
.github/workflows/main.yml
vendored
|
|
@ -57,9 +57,18 @@ jobs:
|
||||||
script: |
|
script: |
|
||||||
nh darwin build ./dot_config/flake#darwinConfigurations.${{matrix.hostname}} --no-nom -- --cores 1 -j1
|
nh darwin build ./dot_config/flake#darwinConfigurations.${{matrix.hostname}} --no-nom -- --cores 1 -j1
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Download artifact
|
||||||
uses: actions/cache@v4
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
key: ${{ matrix.hostname }}-${{ matrix.arch }}
|
id: ${{ matrix.hostname }}-${{ matrix.arch }}
|
||||||
|
path: last-result
|
||||||
|
|
||||||
|
- name: diff
|
||||||
|
run: nix run nixpkgs#nvd -- diff last-result result
|
||||||
|
|
||||||
|
- name: Upload artifact
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
id: ${{ matrix.hostname }}-${{ matrix.arch }}
|
||||||
path: |
|
path: |
|
||||||
result
|
result
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue