From 8a8c0b408cd313df6df53fcfcb28a122220596a7 Mon Sep 17 00:00:00 2001 From: forkless Date: Tue, 9 Jun 2026 22:05:49 +0200 Subject: [PATCH] refresh stats after backup, stale CI check in skill --- .github/workflows/release.yml | 2 +- skills/release-workflow/SKILL.md | 1 + src/main.rs | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3a27142..05332e6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -87,7 +87,7 @@ jobs: uses: slsa-framework/slsa-github-generator/.github/workflows/generator_generic_slsa3.yml@v2.0.0 with: base64-subjects: "${{ needs.build.outputs.hashes }}" - upload-assets: true + upload-assets: false release: needs: [build, provenance] diff --git a/skills/release-workflow/SKILL.md b/skills/release-workflow/SKILL.md index 73d3014..bc7f92f 100644 --- a/skills/release-workflow/SKILL.md +++ b/skills/release-workflow/SKILL.md @@ -35,6 +35,7 @@ Before signing a release tag: After CI completes: +- [ ] Check CI runs: two runs (force-push + tag) is normal; three or more means a stale orphan from a previous cycle — cancel or ignore the orphan - [ ] Download draft binaries from the releases page - [ ] Test on target platform — basic workflow, key features - [ ] Click **Publish release** on the hosting platform when satisfied diff --git a/src/main.rs b/src/main.rs index 565e92d..8e401d0 100644 --- a/src/main.rs +++ b/src/main.rs @@ -918,6 +918,7 @@ fn action_create_backup(terminal: &mut Terminal, app: &mut App) - ok_dialog(terminal, app, "Backup Failed", &msg)?; } } + refresh_stats(&mut app.tui_state, app.save_folder.as_deref()); Ok(()) }