From 1eabd4b71ac50096cd91b08479ba3fdac36a8674 Mon Sep 17 00:00:00 2001 From: Martin Porwoll Date: Mon, 15 Dec 2025 12:51:32 +0000 Subject: [PATCH] fix(ci): enable hidden files in build artifact upload MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The .next directory is a hidden directory (starts with dot) and upload-artifact@v4 has include-hidden-files: false by default. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f3670c1..b2d97b4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -208,6 +208,7 @@ jobs: .next/ !.next/cache/ retention-days: 1 + include-hidden-files: true # =========================================================================== # E2E Tests (after build)