35 lines
958 B
YAML
35 lines
958 B
YAML
steps:
|
|
build main:
|
|
when:
|
|
- event: push
|
|
branch: main
|
|
image: woodpeckerci/plugin-docker-buildx:4.2.0@sha256:e3c7a04b5c1c679655a7f8de77721a39492019b4c372bea0e90ec3dd765e750a
|
|
pull: true
|
|
settings:
|
|
platforms: linux/amd64
|
|
registry: ${CI_FORGE_URL}
|
|
username: WoodpeckerCI
|
|
password:
|
|
from_secret: gitea_token
|
|
repo: git.verdigado.com/${CI_REPO,,}
|
|
tags:
|
|
- 'latest'
|
|
- ${CI_COMMIT_SHA}
|
|
|
|
build branch:
|
|
when:
|
|
- event: push
|
|
branch:
|
|
exclude: ['main']
|
|
image: woodpeckerci/plugin-docker-buildx:4.2.0@sha256:e3c7a04b5c1c679655a7f8de77721a39492019b4c372bea0e90ec3dd765e750a
|
|
pull: true
|
|
settings:
|
|
platforms: linux/amd64
|
|
registry: ${CI_FORGE_URL}
|
|
username: WoodpeckerCI
|
|
password:
|
|
from_secret: gitea_token
|
|
repo: git.verdigado.com/${CI_REPO,,}
|
|
tags:
|
|
- ${CI_COMMIT_BRANCH}
|
|
- ${CI_COMMIT_SHA}
|