mirror of
				https://github.com/ArthurSonzogni/FTXUI.git
				synced 2025-10-31 02:28:11 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			553 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			553 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: "Publish to Bazel Central Registry"
 | |
| 
 | |
| on:
 | |
|   # Manual kick-off (you type the tag)
 | |
|   workflow_dispatch:
 | |
|     inputs:
 | |
|       tag_name:
 | |
|         description: "Tag to publish"
 | |
|         required: true
 | |
|         type: string
 | |
| 
 | |
| permissions:
 | |
|   contents:     write
 | |
| 
 | |
| jobs:
 | |
|   publish:
 | |
|     uses: bazel-contrib/publish-to-bcr/.github/workflows/publish.yaml@v0.0.4
 | |
|     with:
 | |
|       tag_name: ${{ github.event.inputs.tag_name }}
 | |
|       registry_fork: ArthurSonzogni/bazel-central-registry
 | |
|       attest: false
 | |
| 
 | |
|     secrets:
 | |
|       publish_token: ${{ secrets.PUBLISH_TOKEN }}
 | 
