Skip to content

Setup script setup-v2026.06.14-b3cc51a

Choose a tag to compare

@github-actions github-actions released this 14 Jun 23:48
b3cc51a

Player onboarding script for the NegativeZone Minecraft server.

Auto-published when docs/assets/setup.ps1 changed on main.

Install command

irm https://github.com/camcast3/MinecraftInfra/releases/latest/download/setup.ps1 | iex

SHA-256

ec6565e171abc1eaf823f70de2cebabd827a182fc097f6800b4439c5e782c731

Verify before running (optional, recommended)

$url  = 'https://github.com/camcast3/MinecraftInfra/releases/download/setup-v2026.06.14-b3cc51a/setup.ps1'
$want = 'ec6565e171abc1eaf823f70de2cebabd827a182fc097f6800b4439c5e782c731'
$body = irm $url
$got  = (Get-FileHash -InputStream ([IO.MemoryStream]::new([Text.Encoding]::UTF8.GetBytes($body))) -Algorithm SHA256).Hash.ToLower()
if ($got -eq $want) { iex $body } else { throw "SHA-256 mismatch: $got vs $want" }