* Get rid of failing cache on build-apps' setup-node * Make nightly runs tag-based to allow manual triggering Fixes #5492 * Add permissions contents write
		
			
				
	
	
		
			20 lines
		
	
	
		
			660 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			660 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| export COMMIT=$(git rev-parse --short HEAD)
 | |
| 
 | |
| # package.json
 | |
| PACKAGE=$(jq '.productName="Zoo Modeling App (Nightly)" | .name="zoo-modeling-app-nightly"' package.json --indent 2)
 | |
| echo "$PACKAGE" > package.json
 | |
| 
 | |
| # electron-builder.yml
 | |
| yq -i '.publish[0].url = "https://dl.zoo.dev/releases/modeling-app/nightly"' electron-builder.yml
 | |
| yq -i '.appId = "dev.zoo.modeling-app-nightly"' electron-builder.yml
 | |
| yq -i '.nsis.include = "./scripts/installer-nightly.nsh"' electron-builder.yml
 | |
| 
 | |
| # Release notes
 | |
| echo "Nightly build (commit $COMMIT)" > release-notes.md
 | |
| 
 | |
| # icons
 | |
| cp assets/icon-nightly.png assets/icon.png
 | |
| cp assets/icon-nightly.ico assets/icon.ico
 |