mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-04-29 03:50:18 +00:00
Move v5 maintenance flow onto release/5.1
This commit is contained in:
parent
deee730af2
commit
324f3be1c8
31 changed files with 548 additions and 256 deletions
|
|
@ -9,6 +9,7 @@ import Download from 'lucide-solid/icons/download';
|
|||
import type { UpdateInfo, VersionInfo, UpdatePlan } from '@/api/updates';
|
||||
import {
|
||||
V6_RC_ANNOUNCEMENT,
|
||||
V5_MAINTENANCE_BRANCH,
|
||||
isV5ReleaseLine,
|
||||
} from '@/constants/releaseAnnouncements';
|
||||
|
||||
|
|
@ -498,11 +499,11 @@ sudo tar -xzf pulse-v${props.updateInfo()?.latestVersion}-linux-amd64.tar.gz -C
|
|||
</div>
|
||||
<div class="ml-8 relative group">
|
||||
<code class="block p-3 bg-gray-900 dark:bg-gray-950 rounded-lg text-sm font-mono text-green-400 border border-gray-700">
|
||||
git pull origin main
|
||||
{`git pull origin ${V5_MAINTENANCE_BRANCH}`}
|
||||
</code>
|
||||
<button
|
||||
type="button"
|
||||
onClick={() => navigator.clipboard.writeText('git pull origin main')}
|
||||
onClick={() => navigator.clipboard.writeText(`git pull origin ${V5_MAINTENANCE_BRANCH}`)}
|
||||
class="absolute top-2 right-2 p-1.5 rounded bg-gray-700 hover:bg-gray-600 text-gray-300 opacity-60 hover:opacity-100 transition-opacity"
|
||||
title="Copy to clipboard"
|
||||
>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue