mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			283 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			283 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/bash -ex
 | |
| 
 | |
| . .ci/scripts/common/pre-upload.sh
 | |
| 
 | |
| REV_NAME="yuzu-windows-mingw-${GITDATE}-${GITREV}"
 | |
| ARCHIVE_NAME="${REV_NAME}.tar.gz"
 | |
| COMPRESSION_FLAGS="-czvf"
 | |
| 
 | |
| mkdir "$REV_NAME"
 | |
| # get around the permission issues
 | |
| cp -r package/* "$REV_NAME"
 | |
| 
 | |
| . .ci/scripts/common/post-upload.sh
 | 
