Platform Tools Bootstrap Service Simplifies installation of tools from Google Artifact Registry. Usage: curl -sL "https://get.cloudwalk.io/{package}" \ -H "Authorization: Bearer $(gcloud auth print-access-token)" | bash Examples: # Install latest version curl -sL "https://get.cloudwalk.io/github-builder" \ -H "Authorization: Bearer $(gcloud auth print-access-token)" | bash # Install specific version curl -sL "https://get.cloudwalk.io/github-builder?version=v3.0.0" \ -H "Authorization: Bearer $(gcloud auth print-access-token)" | bash # Install from branch (automatically prefixed with snapshot-) curl -sL "https://get.cloudwalk.io/github-builder?version=v3-alpha" \ -H "Authorization: Bearer $(gcloud auth print-access-token)" | bash Version Normalization: - "" or "latest" -> 0.0.0-latest - "v3.0.0" -> v3.0.0 (unchanged) - "main" -> snapshot-main - "v3-alpha" -> snapshot-v3-alpha - "feature/xyz" -> snapshot-feature-xyz Source: https://github.com/cloudwalk/github-builder