Skip to content

Commit

Permalink
fix: handle unknown talisman version release
Browse files Browse the repository at this point in the history
  • Loading branch information
pgmanutd committed Nov 12, 2020
1 parent e263f89 commit 7aa4914
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/release/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ const getNextTagName = () => {
try {
const tagName = await getNextTagName();

if (tagName) {
if (tagName && tagName.startsWith('v')) {
const newVersion = tagName.replace('v', '');

const checksumFileContent = await getChecksumFileContent({ tagName });
Expand Down

0 comments on commit 7aa4914

Please sign in to comment.