From d2e35c3be3d8bd2b210139f3b8e18e62256c6f21 Mon Sep 17 00:00:00 2001 From: Houmgaor Date: Thu, 19 Mar 2026 15:57:51 +0100 Subject: [PATCH] fix(ci): exclude Docker build artifact from release download download-artifact picked up the Docker build provenance artifact (Mezeporta~Erupe~39YWA8.dockerbuild) which fails to extract after 5 retries. Filter to only *-amd64 artifacts. --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b10f41c77..ca8ed42ad 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -114,6 +114,7 @@ jobs: uses: actions/download-artifact@v4 with: path: artifacts + pattern: '*-amd64' - name: Copy standalone schema for download run: cp server/migrations/sql/0001_init.sql SCHEMA.sql