scripts/release/make_release.sh builds a versioned, checksum-verified release artifact from the committed tree via 'git archive' — the basis for installing LibrePortal without git/auth. Output lands in dist/<channel>/ laid out as the hosting will serve it (libreportal-<ver>.tar.gz + .sha256 + latest.json), so it can be served locally for testing via LP_RELEASE_BASE_URL. .gitattributes marks dev-only trees export-ignore (scripts/unused, scripts/release, site, .claude, CONTRIBUTING.md, the git meta files) so they never ship; validated the archive includes init.sh/start.sh/scripts/configs/containers/VERSION and excludes all of the above. dist/ gitignored. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> Signed-off-by: librelad <librelad@digitalangels.vip>
11 lines
413 B
Plaintext
11 lines
413 B
Plaintext
# Paths excluded from release tarballs. `git archive` (used by
|
|
# scripts/release/make_release.sh) honours `export-ignore`, so these dev-only
|
|
# trees never ship in libreportal-<ver>.tar.gz.
|
|
scripts/unused export-ignore
|
|
scripts/release export-ignore
|
|
site export-ignore
|
|
.claude export-ignore
|
|
.gitignore export-ignore
|
|
.gitattributes export-ignore
|
|
CONTRIBUTING.md export-ignore
|