Replaces manual tagging handling with a plugin, mostly to avoid dealing with echoed out secrets in the job log, which should be censored automatically, but who knows when that breaks...
22 lines
536 B
YAML
22 lines
536 B
YAML
when:
|
|
- event: push
|
|
branch: ${CI_REPO_DEFAULT_BRANCH}
|
|
path: [ "*.ex", "*.eex", "*.exs", "mix.lock", ".woodpecker/**" ]
|
|
|
|
depends_on:
|
|
- docker-develop
|
|
|
|
skip_clone: true
|
|
|
|
steps:
|
|
docker-develop-combine:
|
|
image: git.fluffytail.org/phnt/wpc-docker-tagger:latest
|
|
settings:
|
|
registry: "git.fluffytail.org"
|
|
image: "pleroma-test/pleroma"
|
|
architectures: [amd64, arm64]
|
|
tags: [latest, develop]
|
|
username:
|
|
from_secret: pleroma-ci-user
|
|
password:
|
|
from_secret: pleroma-ci-password
|