You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							23 lines
						
					
					
						
							509 B
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							23 lines
						
					
					
						
							509 B
						
					
					
				
								name: "helm: publish charts"
							 | 
						|
								on:
							 | 
						|
								  push:
							 | 
						|
								    tags:
							 | 
						|
								      - '*'
							 | 
						|
								
							 | 
						|
								permissions:
							 | 
						|
								  contents: write
							 | 
						|
								  pages: write
							 | 
						|
								
							 | 
						|
								jobs:
							 | 
						|
								  release:
							 | 
						|
								    runs-on: ubuntu-latest
							 | 
						|
								    steps:
							 | 
						|
								      - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
							 | 
						|
								      - name: Publish Helm charts
							 | 
						|
								        uses: stefanprodan/helm-gh-pages@v1.7.0
							 | 
						|
								        with:          
							 | 
						|
								          token: ${{ secrets.GITHUB_TOKEN }}
							 | 
						|
								          charts_dir: k8s/charts
							 | 
						|
								          target_dir: helm
							 | 
						|
								          branch: gh-pages
							 | 
						|
								          helm_version: "3.18.4"
							 |