Some checks failed
ci/woodpecker/push/db Pipeline was successful
ci/woodpecker/push/bff Pipeline failed
ci/woodpecker/push/billing_fees Pipeline failed
ci/woodpecker/push/chain_gateway Pipeline failed
ci/woodpecker/push/fx_ingestor Pipeline failed
ci/woodpecker/push/fx_oracle Pipeline failed
ci/woodpecker/push/ledger Pipeline failed
ci/woodpecker/push/nats Pipeline was successful
ci/woodpecker/push/notification Pipeline failed
ci/woodpecker/push/payments_orchestrator Pipeline failed
ci/woodpecker/push/bump_version unknown status
30 lines
503 B
YAML
30 lines
503 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: bump_version
|
|
depends_on:
|
|
- bff
|
|
- billing_fees
|
|
- chain_gateway
|
|
- db
|
|
- fx_ingestor
|
|
- fx_oracle
|
|
- ledger
|
|
- nats
|
|
- notification
|
|
- payments_orchestrator
|
|
|
|
when:
|
|
- event: push
|
|
branch: main
|
|
|
|
steps:
|
|
- name: bump-version
|
|
image: alpine:latest
|
|
environment:
|
|
GIT_AUTHOR_NAME: woodpecker
|
|
GIT_AUTHOR_EMAIL: ci@sendico.io
|
|
commands:
|
|
- set -euo pipefail
|
|
- apk add --no-cache git
|
|
- sh ci/scripts/common/bump_version.sh
|