comment out the artifact stuff

This commit is contained in:
Tyler Mayoff 2025-07-07 21:29:19 -04:00
parent ba4bb49d48
commit f57081c05a

View file

@ -57,27 +57,27 @@ 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: Download artifact # - name: Download artifact
uses: actions/download-artifact@v4 # uses: actions/download-artifact@v4
with: # with:
name: ${{ matrix.hostname }}-${{ matrix.arch }} # name: ${{ matrix.hostname }}-${{ matrix.arch }}
path: last-result # path: last-result
github-token: ${{ github.token }} # github-token: ${{ github.token }}
- name: extract result # - name: extract result
run: | # run: |
tar -xvf result.tar.gz last-result || true # tar -xvf result.tar.gz last-result || true
- name: diff # - name: diff
run: | # run: |
nix run nixpkgs#nvd -- diff last-result result || true # nix run nixpkgs#nvd -- diff last-result result || true
- name: compress result # - name: compress result
run: tar -czvf result.tar.gz result || true # run: tar -czvf result.tar.gz result || true
- name: Upload artifact # - name: Upload artifact
uses: actions/upload-artifact@v4 # uses: actions/upload-artifact@v4
with: # with:
name: ${{ matrix.hostname }}-${{ matrix.arch }} # name: ${{ matrix.hostname }}-${{ matrix.arch }}
path: result.tar.gz # path: result.tar.gz
github-token: ${{ github.token }} # github-token: ${{ github.token }}