Skip to content

Commit 3c01b01

Browse files
committed
build: Update deploy script for raven-js with better naming
1 parent 286102e commit 3c01b01

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/raven-js/scripts/deploy.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,12 +203,12 @@ function runBuild() {
203203
}
204204

205205
function commitChanges(nextVersion) {
206-
execCommand(`git add -A && git commit -am "${nextVersion}"`);
206+
execCommand(`git add -A && git commit -am "raven-js@${nextVersion}"`);
207207
console.log('✔ Changes committed');
208208
}
209209

210210
function createTag(nextVersion) {
211-
execCommand(`git tag -a ${nextVersion} -m "Version ${nextVersion}"`);
211+
execCommand(`git tag -a "raven-js@${nextVersion}" -m "raven-js@${nextVersion}"`);
212212
console.log('✔ Tag created');
213213
}
214214

0 commit comments

Comments
 (0)