From 2d135acab70b0e49646547f812cb7d5174df58f1 Mon Sep 17 00:00:00 2001 From: Voyager Date: Mon, 10 Aug 2026 23:23:32 -0400 Subject: [PATCH] Make release packaging instructions version-agnostic --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index eb81c5f..6b601cc 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Export the `Linux Dedicated Server` preset from the game project, then stage its executable and PCK: ```sh -./scripts/stage-build.sh ../netfishing/builds/v0.6.4-alpha/server-linux-x86_64 +./scripts/stage-build.sh ../netfishing/builds/vX.Y.Z-alpha/server-linux-x86_64 ``` The staged binaries under `dist/` are release inputs and are intentionally not @@ -19,7 +19,7 @@ tracked by Git. Create a deterministic native archive after staging: ```sh -./scripts/package-native.sh 0.6.4-alpha +./scripts/package-native.sh X.Y.Z-alpha ``` ## Run natively @@ -62,7 +62,7 @@ expects `/var/lib/netfishing-server` to be writable by that user. ## Run with Docker Compose ```sh -./scripts/stage-build.sh ../netfishing/builds/v0.6.4-alpha/server-linux-x86_64 +./scripts/stage-build.sh ../netfishing/builds/vX.Y.Z-alpha/server-linux-x86_64 docker compose build docker compose up -d ```