3 Commits

Author SHA1 Message Date
9c11f1705c also push to latest
Some checks reported errors
continuous-integration/drone/tag Build encountered an error
2025-03-29 17:27:50 +01:00
aad30fda0f also push to latest
All checks were successful
continuous-integration/drone/tag Build is passing
2025-03-29 17:18:32 +01:00
3b63958dce also push to latest
All checks were successful
continuous-integration/drone/tag Build is passing
2025-03-29 17:07:29 +01:00
4 changed files with 52 additions and 18 deletions

View File

@@ -53,7 +53,7 @@ steps:
---
kind: pipeline
type: kubernetes
name: manifest
name: manifest-version
platform:
os: linux
arch: arm64
@@ -63,16 +63,42 @@ trigger:
event:
- tag
steps:
- name: manifest
- name: manifest-version
image: plugins/manifest
settings:
spec: docker/manifest.tmpl
spec: docker/manifest.version.tmpl
username:
from_secret: docker_username
password:
from_secret: docker_password
auto_tag: true
ignore_missing: true
depends_on:
- linux-amd64
- linux-arm64
depends_on:
- linux-amd64
- linux-arm64
---
kind: pipeline
type: kubernetes
name: manifest-latest
platform:
os: linux
arch: amd64
node_selector:
kubernetes.io/arch: amd64
trigger:
event:
- tag
steps:
- name: manifest-latest
image: plugins/manifest
settings:
spec: docker/manifest.latest.tmpl
username:
from_secret: docker_username
password:
from_secret: docker_password
auto_tag: true
ignore_missing: true
depends_on:
- linux-amd64
- linux-arm64

View File

@@ -0,0 +1,10 @@
image: bottledpills/deluge-openvpn:latest
manifests:
- image: bottledpills/deluge-openvpn:latest-linux-amd64
platform:
architecture: amd64
os: linux
- image: bottledpills/deluge-openvpn:latest-linux-arm64
platform:
architecture: arm64
os: linux

View File

@@ -1,12 +0,0 @@
image: bottledpills/deluge-openvpn:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}
manifests:
-
image: bottledpills/deluge-openvpn:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-amd64
platform:
architecture: amd64
os: linux
-
image: bottledpills/deluge-openvpn:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-arm64
platform:
architecture: arm64
os: linux

View File

@@ -0,0 +1,10 @@
image: bottledpills/deluge-openvpn:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}
manifests:
- image: bottledpills/deluge-openvpn:{{#if build.tag}}{{trimPrefix "v" build.tag}}-linux-amd64{{else}}latest-linux-amd64{{/if}}
platform:
architecture: amd64
os: linux
- image: bottledpills/deluge-openvpn:{{#if build.tag}}{{trimPrefix "v" build.tag}}-linux-arm64{{else}}latest-linux-arm64{{/if}}
platform:
architecture: arm64
os: linux