-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest-buildpacks.yml
More file actions
51 lines (48 loc) · 1.12 KB
/
manifest-buildpacks.yml
File metadata and controls
51 lines (48 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
labels:
type: exec
platform: linux/amd64
steps:
- name: generate-manifest
image: bash
commands:
- sed -i "s/registry.drycc.cc/$${DRYCC_REGISTRY}/g" .woodpecker/manifest-buildpacks.tmpl
- sed -i "s/{{codename}}/$${CODENAME}/g" .woodpecker/manifest-buildpacks.tmpl
environment:
CODENAME:
from_secret: codename
DEV_REGISTRY:
from_secret: dev_registry
DRYCC_REGISTRY:
from_secret: drycc_registry
CONTAINER_USERNAME:
from_secret: container_username
CONTAINER_PASSWORD:
from_secret: container_password
when:
event:
- push
- tag
- cron
- name: publish-buildpacks-image
image: bash
commands:
- podman run --rm
-e PLUGIN_SPEC=.woodpecker/manifest-buildpacks.tmpl
-e PLUGIN_USERNAME=$CONTAINER_USERNAME
-e PLUGIN_PASSWORD=$CONTAINER_PASSWORD
-e DRONE_TAG=$CI_COMMIT_TAG
-v $(pwd):$(pwd)
-w $(pwd)
plugins/manifest
environment:
CONTAINER_USERNAME:
from_secret: container_username
CONTAINER_PASSWORD:
from_secret: container_password
when:
event:
- push
- tag
- cron
depends_on:
- build-linux-buildpacks