Skip to content

Commit 0cebbfd

Browse files
committed
chore: untrack dist/ so CI stops shipping ~30MB of stale artifacts
dist/ was tracked, so every fresh CI checkout started with the old Apr/Jun 2026 binaries + smpl-apps-0.7.0-x86_64.tar.gz already present. The release job then: 1. mkdir -p dist (no-op — dir already exists with junk) 2. cp fresh bins to dist/ (overwrites the stale binaries) 3. tar -C dist . (also picks up smpl-apps-0.7.0.tar.gz) so every smpl-apps-VERSION-x86_64.tar.gz shipped to the fleet contained the stowaway ~30MB legacy tarball. Verified in v0.8.20 tarball listing before this fix. Untracks the whole directory and adds /dist/ to .gitignore so the mistake can never come back. Next release will drop ~30MB per fleet download and one confusing legacy artifact from every install.
1 parent e24361a commit 0cebbfd

8 files changed

Lines changed: 5 additions & 0 deletions

File tree

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
11
/target/
22
**/target/
33
*/Cargo.lock
4+
5+
# Release staging dir populated fresh by CI; must never contain
6+
# checked-in binaries or old tarballs (was accidentally shipping
7+
# ~30MB of stale artifacts inside every smpl-apps release tarball).
8+
/dist/

dist/app-center

-11.7 MB
Binary file not shown.

dist/notif-center

-8.17 MB
Binary file not shown.

dist/settings

-13.8 MB
Binary file not shown.

dist/smpl-apps-0.7.0-x86_64.tar.gz

-27.2 MB
Binary file not shown.

dist/smpl-calendar

-11.4 MB
Binary file not shown.

dist/start-menu

-10.1 MB
Binary file not shown.

dist/webapp-center

-9.24 MB
Binary file not shown.

0 commit comments

Comments
 (0)