File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -25,19 +25,22 @@ jobs:
2525 ref : ${{ env.RELEASE_TAG }}
2626
2727 - name : Prepare signing certificate
28+ id : prepare_signing
2829 shell : pwsh
2930 env :
30- CLOUDSQLCTL_SIGN_CERT_B64 : ${{ secrets. CLOUDSQLCTL_SIGN_CERT_B64 }}
31- CLOUDSQLCTL_SIGN_PWD : ${{ secrets. CLOUDSQLCTL_SIGN_PWD }}
31+ CLOUDSQLCTL_SIGN_CERT_B64 : ${{ secrets[' CLOUDSQLCTL_SIGN_CERT_B64'] }}
32+ CLOUDSQLCTL_SIGN_PWD : ${{ secrets[' CLOUDSQLCTL_SIGN_PWD'] }}
3233 run : |
3334 if (-not $env:CLOUDSQLCTL_SIGN_CERT_B64) {
3435 Write-Host "Signing cert not provided; skipping signing setup."
36+ "sign_enabled=false" | Out-File -FilePath $env:GITHUB_OUTPUT -Append
3537 exit 0
3638 }
3739 $certPath = Join-Path $env:RUNNER_TEMP "cloudsqlctl-signing.pfx"
3840 [IO.File]::WriteAllBytes($certPath, [Convert]::FromBase64String($env:CLOUDSQLCTL_SIGN_CERT_B64))
3941 "CLOUDSQLCTL_SIGN_CERT=$certPath" | Out-File -FilePath $env:GITHUB_ENV -Append
4042 "CLOUDSQLCTL_SIGN_PWD=$env:CLOUDSQLCTL_SIGN_PWD" | Out-File -FilePath $env:GITHUB_ENV -Append
43+ "sign_enabled=true" | Out-File -FilePath $env:GITHUB_OUTPUT -Append
4144
4245 - name : Use Node.js 22.x
4346 uses : actions/setup-node@v4
7073 run : npm run installer
7174
7275 - name : Sign artifacts
73- if : ${{ env.CLOUDSQLCTL_SIGN_CERT != '' }}
76+ if : steps.prepare_signing.outputs.sign_enabled == 'true'
7477 shell : pwsh
7578 run : |
7679 powershell -ExecutionPolicy Bypass -File tools/sign-exe.ps1 -ExePath "bin/cloudsqlctl.exe"
Original file line number Diff line number Diff line change 22
33# Changelog
44
5+ ## [ 0.5.1] - 2026-03-02
6+
7+ ### Changed
8+
9+ - bump @types/node from 25.0.3 to 25.1.0 (#55 )
10+ - bump commander from 14.0.2 to 14.0.3 (#57 )
11+ - bump prettier from 3.7.4 to 3.8.1 (#58 )
12+ - bump axios in the npm_and_yarn group across 1 directory (#60 )
13+ - bump inquirer from 13.1.0 to 13.2.2 (#59 )
14+ - bump commander from 12.1.0 to 14.0.2 (#49 )
15+ - bump inquirer from 9.3.8 to 13.1.0 (#50 )
16+ - bump @types/extract-zip from 2.0.0 to 2.0.3 (#52 )
17+ - bump typescript-eslint from 8.50.0 to 8.51.0 (#53 )
18+ - bump globals from 16.5.0 to 17.0.0 (#54 )
19+ - update commands reference for v0.5.0
20+
521## [ 0.5.0] - 2025-12-22
622
723### Added
Original file line number Diff line number Diff line change 11# Cloud SQL Proxy CLI Reference
22
3- ** Version:** 0.5.0
4- ** Generated:** 2025-12-22
3+ ** Version:** 0.5.1
4+ ** Generated:** 2026-03-02
55
66## Overview
77
You can’t perform that action at this time.
0 commit comments