Fix Linux desktop download links to point to actual desktop versions (#3051)

This commit is contained in:
Michael Neale
2025-06-24 19:42:26 +10:00
committed by GitHub
parent e6a893254d
commit 9c8e3e3500
2 changed files with 5 additions and 11 deletions

View File

@@ -8,21 +8,15 @@ const LinuxDesktopInstallButtons = () => {
<div className="pill-button" style={{ display: 'flex', gap: '0.5rem', flexWrap: 'wrap' }}>
<Link
className="button button--primary button--lg"
to="https://github.com/block/goose/releases/download/v1.0.29/goose-x86_64-unknown-linux-gnu.tar.bz2"
to="https://github.com/block/goose/releases/download/stable/goose_1.0.29_amd64.deb"
>
<IconDownload /> Linux x86_64
<IconDownload /> DEB Package (Ubuntu/Debian)
</Link>
<Link
className="button button--primary button--lg"
to="https://github.com/block/goose/releases/download/v1.0.29/goose-aarch64-unknown-linux-gnu.tar.bz2"
to="https://github.com/block/goose/releases/download/stable/Goose-1.0.29-1.x86_64.rpm"
>
<IconDownload /> Linux ARM64
</Link>
<Link
className="button button--primary button--lg"
to="https://github.com/block/goose/releases/download/v1.0.29/Goose-1.0.29-1.x86_64.rpm"
>
<IconDownload /> RPM Package
<IconDownload /> RPM Package (RHEL/Fedora)
</Link>
</div>
</div>

View File

@@ -8,7 +8,7 @@ const WindowsDesktopInstallButtons = () => {
<div className="pill-button">
<Link
className="button button--primary button--lg"
to="https://github.com/block/goose/releases/download/v1.0.29/Goose-win32-x64.zip"
to="https://github.com/block/goose/releases/download/stable/Goose-win32-x64.zip"
>
<IconDownload /> Windows
</Link>