All checks were successful
ci/woodpecker/push/buildAndPublish Pipeline was successful
23 lines
No EOL
493 B
YAML
23 lines
No EOL
493 B
YAML
when:
|
|
- event: push
|
|
branch: build
|
|
- event: manual
|
|
|
|
steps:
|
|
- name: test tags
|
|
image: alpine
|
|
commands:
|
|
- echo "latest,${CI_COMMIT_SHA:0:7}"
|
|
- name: Build and publish
|
|
image: woodpeckerci/plugin-docker-buildx
|
|
settings:
|
|
repo: ghcr.io/codemicro/website
|
|
registry: ghcr.io
|
|
platforms: linux/amd64
|
|
tags:
|
|
- latest
|
|
- ${CI_COMMIT_SHA:0:7}
|
|
username:
|
|
from_secret: GHCR_USER
|
|
password:
|
|
from_secret: GHCR_TOKEN |