Fix manifest tag order
This commit is contained in:
		
							parent
							
								
									579b5822b6
								
							
						
					
					
						commit
						5305b70b83
					
				
					 1 changed files with 6 additions and 6 deletions
				
			
		|  | @ -27,17 +27,17 @@ require "$tag" "tag" | ||||||
| set -xe | set -xe | ||||||
| 
 | 
 | ||||||
| docker manifest create $repo:$tag \ | docker manifest create $repo:$tag \ | ||||||
|     -a $repo:arm64v8-$tag \ |     -a $repo:$tag-arm64v8 \ | ||||||
|     -a $repo:arm32v7-$tag \ |     -a $repo:$tag-arm32v7 \ | ||||||
|     -a $repo:amd64-$tag |     -a $repo:$tag-amd64 | ||||||
| 
 | 
 | ||||||
| docker manifest annotate $repo:$tag \ | docker manifest annotate $repo:$tag \ | ||||||
|     $repo:arm64v8-$tag --os linux --arch arm64 --variant v8 |     $repo:$tag-arm64v8 --os linux --arch arm64 --variant v8 | ||||||
| 
 | 
 | ||||||
| docker manifest annotate $repo:$tag \ | docker manifest annotate $repo:$tag \ | ||||||
|     $repo:arm32v7-$tag --os linux --arch arm --variant v7 |     $repo:$tag-arm32v7 --os linux --arch arm --variant v7 | ||||||
| 
 | 
 | ||||||
| docker manifest annotate $repo:$tag \ | docker manifest annotate $repo:$tag \ | ||||||
|     $repo:amd64-$tag --os linux --arch amd64 |     $repo:$tag-amd64 --os linux --arch amd64 | ||||||
| 
 | 
 | ||||||
| docker manifest push $repo:$tag --purge | docker manifest push $repo:$tag --purge | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		
		Reference in a new issue