mirror of
https://github.com/sigp/lighthouse.git
synced 2026-04-21 23:08:23 +00:00
Simplify reproducible builds: single version tag, add binary tarball + AppImage outputs
- Replace docker-reproducible.yml with reproducible.yml which produces three artifacts per arch: Docker image, binary tarball, and AppImage - Use a single multi-arch index digest in Dockerfile.reproducible as the sole version tag to maintain; Makefile and CI no longer carry their own per-arch image references - Add packaging/appimage/ template (AppRun, .desktop, lighthouse.svg) Co-Authored-By: Claude Sonnet 4 <noreply@anthropic.com>
This commit is contained in:
9
packaging/appimage/AppRun
Normal file
9
packaging/appimage/AppRun
Normal file
@@ -0,0 +1,9 @@
|
||||
#!/bin/sh
|
||||
# AppRun - AppImage entry point for Lighthouse
|
||||
# Resolves the real location of the AppImage and executes the bundled binary.
|
||||
set -e
|
||||
|
||||
SELF=$(readlink -f "$0")
|
||||
HERE=$(dirname "$SELF")
|
||||
|
||||
exec "$HERE/usr/bin/lighthouse" "$@"
|
||||
Reference in New Issue
Block a user