mirror of
				https://github.com/docker/setup-qemu-action.git
				synced 2025-10-31 09:10:10 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			771 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			771 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| # https://help.github.com/en/articles/metadata-syntax-for-github-actions
 | |
| name: 'Docker Setup QEMU'
 | |
| description: 'Install QEMU static binaries'
 | |
| author: 'docker'
 | |
| branding:
 | |
|   icon: 'anchor'
 | |
|   color: 'blue'
 | |
| 
 | |
| inputs:
 | |
|   image:
 | |
|     description: 'QEMU static binaries Docker image (e.g. tonistiigi/binfmt:latest)'
 | |
|     default: 'docker.io/tonistiigi/binfmt:latest'
 | |
|     required: false
 | |
|   platforms:
 | |
|     description: 'Platforms to install (e.g. arm64,riscv64,arm)'
 | |
|     default: 'all'
 | |
|     required: false
 | |
|   cache-image:
 | |
|     description: 'Cache binfmt image to GitHub Actions cache backend'
 | |
|     default: 'true'
 | |
|     required: false
 | |
| 
 | |
| outputs:
 | |
|   platforms:
 | |
|     description: 'Available platforms (comma separated)'
 | |
| 
 | |
| runs:
 | |
|   using: 'node20'
 | |
|   main: 'dist/index.js'
 | |
|   post: 'dist/index.js'
 | 
