fix: make publish dry-run script match dogfood publish script (#169)

This commit is contained in:
Brandon Keiji 2025-04-25 16:58:27 +00:00 committed by GitHub
parent b65442a88c
commit eea524f6bb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 7 deletions

View File

@ -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']