Make release packaging instructions version-agnostic

This commit is contained in:
Alexander Sellite 2026-08-10 23:23:32 -04:00
parent b9c031dfab
commit 2d135acab7

View file

@ -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
```