From f0e615075d90c1030cfb10ea4d3c3d023a1ba722 Mon Sep 17 00:00:00 2001 From: Burak Yigit Kaya Date: Tue, 10 Feb 2026 23:51:57 +0000 Subject: [PATCH] fix(craft): match workflow name in artifact filter and rename to Build Craft's GitHub artifact provider matches the artifact config keys against the workflow run's name field, not the filename. Our config used `ci.yml` (the filename) but the workflow declared `name: CI`, so no runs matched and artifact retrieval failed after 3 retries. Rename the workflow from `CI` to `Build` which better describes its purpose, and update `.craft.yml` to match. --- .craft.yml | 2 +- .github/workflows/ci.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.craft.yml b/.craft.yml index 4b94175f..fb7e437b 100644 --- a/.craft.yml +++ b/.craft.yml @@ -9,7 +9,7 @@ artifactProvider: name: github config: artifacts: - ci.yml: + Build: - 'sentry-*' - 'npm-package' - 'gh-pages' diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5050759f..d90fd7db 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,4 @@ -name: CI +name: Build on: push: