From 6bd343f5d0c9c80962b859756942f7416063b0e7 Mon Sep 17 00:00:00 2001 From: Brad Lugo Date: Wed, 27 May 2026 12:02:12 -0700 Subject: [PATCH] fix(ci): disable archive for genesis-dump upload --- .github/workflows/ci.yaml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 46acba709..624b42c4c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -192,8 +192,11 @@ jobs: - uses: actions/upload-artifact@v7 with: - name: genesis-dump + name: genesis-dump.zip path: /tmp/genesis-dump/genesis-dump.zip + # genesis-dump is already an archive; this will avoid creating a + # zip of a zip. + archive: false - uses: actions/upload-artifact@v7 with: @@ -229,8 +232,9 @@ jobs: - uses: actions/download-artifact@v8 with: - name: genesis-dump + name: genesis-dump.zip path: /tmp/genesis-dump + skip-decompress: true - name: db-dump run: | @@ -504,8 +508,9 @@ jobs: - uses: actions/download-artifact@v8 with: - name: genesis-dump + name: genesis-dump.zip path: /tmp/genesis-dump + skip-decompress: true - name: diff-dumps run: ./scripts/ci/jobs/diff-dumps.sh