Skip to content

Commit a153433

Browse files
committed
Replace drone build configuration with woodpecker
1 parent 2358210 commit a153433

File tree

4 files changed

+30
-99
lines changed

4 files changed

+30
-99
lines changed

.drone.yml

Lines changed: 0 additions & 99 deletions
This file was deleted.

.woodpecker/.feature.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
pipeline:
2+
build-and-push:
3+
image: plugins/docker
4+
settings:
5+
repo: "${CI_REPO_OWNER##mu-}/${CI_REPO_NAME}"
6+
tags: "feature-${CI_COMMIT_BRANCH##feature/}"
7+
secrets: [docker_username, docker_password]
8+
when:
9+
event: push
10+
branch: feature/*

.woodpecker/.latest.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
pipeline:
2+
build-and-push:
3+
image: plugins/docker
4+
settings:
5+
repo: "${CI_REPO_OWNER##mu-}/${CI_REPO_NAME}"
6+
tags: latest
7+
secrets: [docker_username, docker_password]
8+
when:
9+
event: push
10+
branch: [master, main]

.woodpecker/.release.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
pipeline:
2+
release:
3+
image: plugins/docker
4+
settings:
5+
repo: "${CI_REPO_OWNER##mu-}/${CI_REPO_NAME}"
6+
tags: "${CI_COMMIT_TAG##v}"
7+
secrets: [ docker_username, docker_password ]
8+
when:
9+
event: tag
10+
tag: v*

0 commit comments

Comments
 (0)