26 lines
		
	
	
		
			686 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			686 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| 
 | |
| set -e
 | |
| cd "$(dirname "$0")"
 | |
| 
 | |
| if [[ -n $CI_TAG ]]; then
 | |
|   LATEST_SOLANA_RELEASE_VERSION=$CI_TAG
 | |
| else
 | |
|   LATEST_SOLANA_RELEASE_VERSION=$(\
 | |
|     curl -sSfL https://api.github.com/repos/solana-labs/solana/releases/latest \
 | |
|     | grep -m 1 tag_name \
 | |
|     | sed -ne 's/^ *"tag_name": "\([^"]*\)",$/\1/p' \
 | |
|   )
 | |
| fi
 | |
| 
 | |
| if [[ -z "$LATEST_SOLANA_RELEASE_VERSION" ]]; then
 | |
|   echo Error: release version not defined
 | |
|   exit 1
 | |
| fi
 | |
| 
 | |
| set -x
 | |
| find html/ -name \*.html -exec sed -i "s/LATEST_SOLANA_RELEASE_VERSION/$LATEST_SOLANA_RELEASE_VERSION/g" {} \;
 | |
| if [[ -n $CI ]]; then
 | |
|   find src/ -name \*.md -exec sed -i "s/LATEST_SOLANA_RELEASE_VERSION/$LATEST_SOLANA_RELEASE_VERSION/g" {} \;
 | |
| fi
 |