You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			26 lines
		
	
	
		
			631 B
		
	
	
	
		
			YAML
		
	
			
		
		
	
	
			26 lines
		
	
	
		
			631 B
		
	
	
	
		
			YAML
		
	
| name: Release
 | |
| 
 | |
| on:
 | |
|   release:
 | |
|     types: [published]
 | |
| 
 | |
| jobs:
 | |
|   release-zip:
 | |
|     runs-on: ubuntu-latest
 | |
|     steps:
 | |
|       - uses: actions/checkout@v4
 | |
| 
 | |
|       - name: ZIP Component Dir
 | |
|         run: |
 | |
|           cd ${{ github.workspace }}/custom_components/xiaomi_home
 | |
|           zip -r xiaomi_home.zip ./          
 | |
| 
 | |
|       - name: Upload zip to release
 | |
|         uses: svenstaro/upload-release-action@v2
 | |
|         with:
 | |
|           repo_token: ${{ secrets.GITHUB_TOKEN }}
 | |
|           file: ${{ github.workspace }}/custom_components/xiaomi_home/xiaomi_home.zip
 | |
|           asset_name: xiaomi_home.zip
 | |
|           tag: ${{ github.ref }}
 | |
|           overwrite: true
 |