mirror of
				https://github.com/strapi/strapi.git
				synced 2025-11-04 03:43:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			408 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			408 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
# Force start from root folder
 | 
						|
cd "$(dirname "$0")/.."
 | 
						|
 | 
						|
set -e
 | 
						|
 | 
						|
version=""
 | 
						|
 | 
						|
echo "Please enter the version you want to publish"
 | 
						|
read -r version
 | 
						|
 | 
						|
# publish packages
 | 
						|
./node_modules/.bin/lerna publish --no-push --force-publish --dist-tag latest --exact "$version"
 | 
						|
 | 
						|
# push master branch
 | 
						|
git push origin master
 | 
						|
 | 
						|
# push tag
 | 
						|
git push origin v"$version"
 | 
						|
 | 
						|
# run changelog cli
 | 
						|
npx @sclt/program-changelog
 |