We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9dd62f commit fce33aaCopy full SHA for fce33aa
.github/workflows/docker.yml
@@ -127,7 +127,9 @@ jobs:
127
docker.app.suffix = docker.image.suffix;
128
129
// setup tags
130
- docker.image.tags.push('rolling');
+ if(!opt.dot.semver?.disable?.rolling){
131
+ docker.image.tags.push('rolling');
132
+ }
133
if(opt.input?.etc?.dockerfile !== 'arch.dockerfile' && opt.input?.etc?.tag){
134
docker.image.tags.push(`${context.sha.substring(0,7)}`);
135
docker.image.tags.push(opt.input.etc.tag);
0 commit comments