 65ba2f32ca
			
		
	
	
	
	
	65ba2f32caTry to prevent what happened with tag `v1.21.0-dev` as outlined in #25193. Unfortunately, we cannot really test if it works as intended as we would need to release a new `dev` tag for that. Fixes #25193 (or at least attempts to). --------- Co-authored-by: jolheiser <john.olheiser@gmail.com>
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			956 B
		
	
	
	
		
			Go HTML Template
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			956 B
		
	
	
	
		
			Go HTML Template
		
	
	
	
	
	
| image: gitea/gitea:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}{{#if (hasPrefix "refs/heads/release/v" build.ref)}}{{trimPrefix "refs/heads/release/v" build.ref}}-{{/if}}nightly{{/if}}
 | |
| {{#if build.tags}}
 | |
| {{#unless (contains "-rc" build.tag)}}
 | |
| {{#unless (contains "-dev" build.tag)}}
 | |
| tags:
 | |
| {{#each build.tags}}
 | |
|   - {{this}}
 | |
| {{/each}}
 | |
|   - "latest"
 | |
| {{/unless}}
 | |
| {{/unless}}
 | |
| {{/if}}
 | |
| manifests:
 | |
|   -
 | |
|     image: gitea/gitea:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}{{#if (hasPrefix "refs/heads/release/v" build.ref)}}{{trimPrefix "refs/heads/release/v" build.ref}}-{{/if}}nightly{{/if}}-linux-amd64
 | |
|     platform:
 | |
|       architecture: amd64
 | |
|       os: linux
 | |
|   -
 | |
|     image: gitea/gitea:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}{{#if (hasPrefix "refs/heads/release/v" build.ref)}}{{trimPrefix "refs/heads/release/v" build.ref}}-{{/if}}nightly{{/if}}-linux-arm64
 | |
|     platform:
 | |
|       architecture: arm64
 | |
|       os: linux
 | |
|       variant: v8
 |