diff options
| author | Brandon Keiji <[email protected]> | 2025-04-25 16:58:27 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-04-25 09:58:27 -0700 |
| commit | eea524f6bb8becf851e44a57b397217b0a147be0 (patch) | |
| tree | c8aef29fc8b73d6b0473a1c6c63a158ed879c690 /.gcp | |
| parent | b65442a88c6bb480ccc3968366ff0dc3c1b24669 (diff) | |
fix: make publish dry-run script match dogfood publish script (#169)
Diffstat (limited to '.gcp')
| -rw-r--r-- | .gcp/publish-dry-run.yaml | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/.gcp/publish-dry-run.yaml b/.gcp/publish-dry-run.yaml index 4f10fe5f..75e6b603 100644 --- a/.gcp/publish-dry-run.yaml +++ b/.gcp/publish-dry-run.yaml @@ -1,14 +1,11 @@ steps: # Install dependencies - - name: 'ubuntu' - entrypoint: 'bash' - args: ['-c', 'apt-get', 'install', '-y', 'rsync'] - - name: 'node' + - name: 'node:bookworm' entrypoint: 'npm' args: ['install'] # Run prerelease versioning script across workspaces with dynamic version - - name: 'node' + - name: 'node:bookworm' entrypoint: 'npm' args: [ @@ -20,12 +17,12 @@ steps: ] # Run prerelease dependency script across workspaces - - name: 'node' + - name: 'node:bookworm' entrypoint: 'npm' args: ['run', 'prerelease:deps', '--workspaces'] # Authenticate with our registry - - name: 'node' + - name: 'node:bookworm' entrypoint: 'npm' args: ['run', 'auth'] |
