mirror of
				https://github.com/ZetaKebab/kesper.git
				synced 2025-11-04 08:09:49 +00:00 
			
		
		
		
	Updated tagName in release script
no issue - as of 4.0, we're shipping tags with the preceding `v`, but this script ignored that and so the release was incorrect - this commit updates the tagName to have the preceding `v`
This commit is contained in:
		@@ -155,7 +155,7 @@ exports.release = async () => {
 | 
			
		||||
        const newReleaseResponse = await releaseUtils.releases.create({
 | 
			
		||||
            draft: true,
 | 
			
		||||
            preRelease: false,
 | 
			
		||||
            tagName: newVersion,
 | 
			
		||||
            tagName: 'v' + newVersion,
 | 
			
		||||
            releaseName: newVersion,
 | 
			
		||||
            userAgent: 'Casper',
 | 
			
		||||
            uri: `https://api.github.com/repos/${REPO}/releases`,
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user