Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ jobs:
INSTALL_CMD='curl -sSL https://install.gsv.space | bash'
else
TITLE="GSV (dev)"
INSTALL_CMD='GSV_CHANNEL=dev curl -sSL https://install.gsv.space | bash'
INSTALL_CMD='curl -sSL https://install.gsv.space | GSV_CHANNEL=dev bash'
fi

cat > body.md <<BODY
Expand All @@ -311,7 +311,7 @@ jobs:
Pin a specific release tag:

\`\`\`bash
GSV_VERSION=${RELEASE_TAG} curl -sSL https://install.gsv.space | bash
curl -sSL https://install.gsv.space | GSV_VERSION=${RELEASE_TAG} bash
\`\`\`

### Cloudflare Bundles
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ gsv setup
gsv setup --skip-node

# Pin exact CLI release tag (immutable build)
GSV_VERSION=gsv-stable-1234-abcdef0 curl -sSL https://install.gsv.space | bash
curl -sSL https://install.gsv.space | GSV_VERSION=gsv-stable-1234-abcdef0 bash
```

If you want to configure a different machine after deployment:
Expand Down