mirror of
				https://github.com/docker/build-push-action.git
				synced 2025-10-31 14:30:54 +00:00 
			
		
		
		
	don't generate summary for cloud driver
Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
This commit is contained in:
		
					parent
					
						
							
								667cb22c52
							
						
					
				
			
			
				commit
				
					
						dc24cf9e25
					
				
			
		
					 2 changed files with 12 additions and 0 deletions
				
			
		|  | @ -83,6 +83,7 @@ actionsToolkit.run( | |||
|     await core.group(`Builder info`, async () => { | ||||
|       const builder = await toolkit.builder.inspect(inputs.builder); | ||||
|       core.info(JSON.stringify(builder, null, 2)); | ||||
|       stateHelper.setBuilder(builder); | ||||
|     }); | ||||
| 
 | ||||
|     const args: string[] = await context.getArgs(inputs, toolkit); | ||||
|  | @ -145,6 +146,10 @@ actionsToolkit.run( | |||
|           core.info('Summary disabled'); | ||||
|           return; | ||||
|         } | ||||
|         if (stateHelper.builder && stateHelper.builder.driver === 'cloud') { | ||||
|           core.info('Summary is not yet supported with Docker Build Cloud'); | ||||
|           return; | ||||
|         } | ||||
|         try { | ||||
|           const buildxHistory = new BuildxHistory(); | ||||
|           const exportRes = await buildxHistory.export({ | ||||
|  |  | |||
|  | @ -1,9 +1,12 @@ | |||
| import * as core from '@actions/core'; | ||||
| 
 | ||||
| import {BuilderInfo} from '@docker/actions-toolkit/lib/types/buildx/builder'; | ||||
| 
 | ||||
| import {Inputs, sanitizeInputs} from './context'; | ||||
| 
 | ||||
| export const tmpDir = process.env['STATE_tmpDir'] || ''; | ||||
| export const inputs = process.env['STATE_inputs'] ? JSON.parse(process.env['STATE_inputs']) : undefined; | ||||
| export const builder = process.env['STATE_builder'] ? <BuilderInfo>JSON.parse(process.env['STATE_builder']) : undefined; | ||||
| export const buildRef = process.env['STATE_buildRef'] || ''; | ||||
| 
 | ||||
| export function setTmpDir(tmpDir: string) { | ||||
|  | @ -14,6 +17,10 @@ export function setInputs(inputs: Inputs) { | |||
|   core.saveState('inputs', JSON.stringify(sanitizeInputs(inputs))); | ||||
| } | ||||
| 
 | ||||
| export function setBuilder(builder: BuilderInfo) { | ||||
|   core.saveState('builder', JSON.stringify(builder)); | ||||
| } | ||||
| 
 | ||||
| export function setBuildRef(buildRef: string) { | ||||
|   core.saveState('buildRef', buildRef); | ||||
| } | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue