From b95545dff22d3ea8ca21648e6339b927000fdbb8 Mon Sep 17 00:00:00 2001 From: Thomas SharedInbox Date: Thu, 14 May 2026 15:39:39 +0200 Subject: [PATCH] fix(ci): generate changelog before analyze (assets/ must exist) The assets/ directory is created by generate-changelog. Splitting CI into separate steps meant analyze ran before any step created it, causing a pubspec.yaml asset_directory_does_not_exist warning that fails the check. Co-Authored-By: Claude Sonnet 4.6 --- .forgejo/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index b92ba7b..04a6bff 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -19,6 +19,9 @@ jobs: mkdir -p ~/.config/nix echo "experimental-features = nix-command flakes" >> ~/.config/nix/nix.conf + - name: Generate changelog + run: nix develop --command task generate-changelog + - name: Analyze run: nix develop --command task analyze