Skip to content

Setup script setup-v2026.06.14-9dd87bf

Choose a tag to compare

@github-actions github-actions released this 14 Jun 03:31
9dd87bf

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

1ce1e8cc89bc9a6792166d773e73dc7ceeedacaf703131f353a3d74e1d69c795

Verify before running (optional, recommended)

$url  = 'https://github.com/camcast3/MinecraftInfra/releases/download/setup-v2026.06.14-9dd87bf/setup.ps1'
$want = '1ce1e8cc89bc9a6792166d773e73dc7ceeedacaf703131f353a3d74e1d69c795'
$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" }