Disable auto tag to prepare next 1.17 release (#22180)
Disable auto tag so that 1.17 release will not tag `:1`.
This commit is contained in:
parent
f51a19c537
commit
3d34cdabb9
24
.drone.yml
24
.drone.yml
|
@ -902,8 +902,11 @@ steps:
|
||||||
image: techknowlogick/drone-docker:latest
|
image: techknowlogick/drone-docker:latest
|
||||||
pull: always
|
pull: always
|
||||||
settings:
|
settings:
|
||||||
auto_tag: true
|
auto_tag: false
|
||||||
auto_tag_suffix: linux-amd64
|
auto_tag_suffix: linux-amd64
|
||||||
|
tags:
|
||||||
|
- ${DRONE_TAG##v}-linux-amd64
|
||||||
|
- ${DRONE_TAG:1:4}-linux-amd64
|
||||||
repo: gitea/gitea
|
repo: gitea/gitea
|
||||||
build_args:
|
build_args:
|
||||||
- GOPROXY=https://goproxy.io
|
- GOPROXY=https://goproxy.io
|
||||||
|
@ -920,8 +923,11 @@ steps:
|
||||||
image: techknowlogick/drone-docker:latest
|
image: techknowlogick/drone-docker:latest
|
||||||
settings:
|
settings:
|
||||||
dockerfile: Dockerfile.rootless
|
dockerfile: Dockerfile.rootless
|
||||||
auto_tag: true
|
auto_tag: false
|
||||||
auto_tag_suffix: linux-amd64-rootless
|
auto_tag_suffix: linux-amd64-rootless
|
||||||
|
tags:
|
||||||
|
- ${DRONE_TAG##v}-linux-amd64-rootless
|
||||||
|
- ${DRONE_TAG:1:4}-linux-amd64-rootless
|
||||||
repo: gitea/gitea
|
repo: gitea/gitea
|
||||||
build_args:
|
build_args:
|
||||||
- GOPROXY=https://goproxy.io
|
- GOPROXY=https://goproxy.io
|
||||||
|
@ -1126,8 +1132,11 @@ steps:
|
||||||
image: techknowlogick/drone-docker:latest
|
image: techknowlogick/drone-docker:latest
|
||||||
pull: always
|
pull: always
|
||||||
settings:
|
settings:
|
||||||
auto_tag: true
|
auto_tag: false
|
||||||
auto_tag_suffix: linux-arm64
|
auto_tag_suffix: linux-arm64
|
||||||
|
tags:
|
||||||
|
- ${DRONE_TAG##v}-linux-arm64
|
||||||
|
- ${DRONE_TAG:1:4}-linux-arm64
|
||||||
repo: gitea/gitea
|
repo: gitea/gitea
|
||||||
build_args:
|
build_args:
|
||||||
- GOPROXY=https://goproxy.io
|
- GOPROXY=https://goproxy.io
|
||||||
|
@ -1144,8 +1153,11 @@ steps:
|
||||||
image: techknowlogick/drone-docker:latest
|
image: techknowlogick/drone-docker:latest
|
||||||
settings:
|
settings:
|
||||||
dockerfile: Dockerfile.rootless
|
dockerfile: Dockerfile.rootless
|
||||||
auto_tag: true
|
auto_tag: false
|
||||||
auto_tag_suffix: linux-arm64-rootless
|
auto_tag_suffix: linux-arm64-rootless
|
||||||
|
tags:
|
||||||
|
- ${DRONE_TAG##v}-linux-arm64-rootless
|
||||||
|
- ${DRONE_TAG:1:4}-linux-arm64-rootless
|
||||||
repo: gitea/gitea
|
repo: gitea/gitea
|
||||||
build_args:
|
build_args:
|
||||||
- GOPROXY=https://goproxy.io
|
- GOPROXY=https://goproxy.io
|
||||||
|
@ -1299,7 +1311,7 @@ steps:
|
||||||
image: plugins/manifest
|
image: plugins/manifest
|
||||||
pull: always
|
pull: always
|
||||||
settings:
|
settings:
|
||||||
auto_tag: true
|
auto_tag: false
|
||||||
ignore_missing: true
|
ignore_missing: true
|
||||||
spec: docker/manifest.rootless.tmpl
|
spec: docker/manifest.rootless.tmpl
|
||||||
password:
|
password:
|
||||||
|
@ -1310,7 +1322,7 @@ steps:
|
||||||
- name: manifest
|
- name: manifest
|
||||||
image: plugins/manifest
|
image: plugins/manifest
|
||||||
settings:
|
settings:
|
||||||
auto_tag: true
|
auto_tag: false
|
||||||
ignore_missing: true
|
ignore_missing: true
|
||||||
spec: docker/manifest.tmpl
|
spec: docker/manifest.tmpl
|
||||||
password:
|
password:
|
||||||
|
|
Loading…
Reference in New Issue