refactor: make version number shorter (#164)

This commit is contained in:
Brandon Keiji 2025-04-25 01:22:59 +00:00 committed by GitHub
parent cbba8007b2
commit b1b9735889
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 4 deletions

View File

@ -6,11 +6,15 @@ steps:
# Run prerelease versioning script across workspaces with dynamic version
- name: 'node'
entrypoint: 'bash'
entrypoint: 'npm'
args:
- '-c'
- |
npm run prerelease:version --workspaces -- --suffix="$SHORT_SHA.$(date +%Y%m%d).$_REVISION"
[
'run',
'prerelease:version',
'--workspaces',
'--',
'--suffix="$SHORT_SHA.$_REVISION"',
]
# Run prerelease dependency script across workspaces
- name: 'node'