From d3812098d8feb2d04cc4cb55e034a1f2338db02f Mon Sep 17 00:00:00 2001 From: Zachary Snow Date: Sun, 23 Nov 2025 19:25:06 -0500 Subject: [PATCH] fix scheduled coverage runs --- .github/workflows/main.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 7713023..7053716 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -96,10 +96,11 @@ jobs: make ${{ github.event_name == 'schedule' && runner.os == 'Linux' && 'coverage' || 'test' }} - name: Upload Coverage uses: actions/upload-artifact@v4 - if: hashFiles('.hpc/*.html') != '' + if: github.event_name == 'schedule' && runner.os == 'Linux' with: name: coverage - path: .hpc/*.html + path: .hpc + include-hidden-files: true release: permissions: