From ec6276e36886c3f270b993a7449779f0f8cf288c Mon Sep 17 00:00:00 2001 From: Tyler Mayoff Date: Mon, 7 Jul 2025 21:06:44 -0400 Subject: [PATCH] try with github token --- .github/workflows/main.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f3e8da8..0e62561 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -62,11 +62,12 @@ jobs: with: name: ${{ matrix.hostname }}-${{ matrix.arch }} path: last-result + github-token: ${{ github.token }} - name: extract result run: | tar -xvf result.tar.gz last-result || true - + - name: diff run: | nix run nixpkgs#nvd -- diff last-result result || true @@ -78,5 +79,5 @@ jobs: uses: actions/upload-artifact@v4 with: name: ${{ matrix.hostname }}-${{ matrix.arch }} - path: | - result.tar.gz + path: result.tar.gz + github-token: ${{ github.token }}