23 lines
636 B
YAML
23 lines
636 B
YAML
matrix:
|
|
PHP_VERSION:
|
|
- 8
|
|
|
|
when:
|
|
branch:
|
|
exclude: [ main, master ]
|
|
path:
|
|
include: [ '.woodpecker/build_dev.yml', 'build/*', 'Dockerfile', 'gen-tag-list.sh' ]
|
|
event: [ push, manual ]
|
|
|
|
steps:
|
|
dev_alpine_build_and_publish:
|
|
image: woodpeckerci/plugin-docker-buildx
|
|
settings:
|
|
username: vistanarvas
|
|
password:
|
|
from_secret: DOCKERHUB_TOKEN
|
|
context: ./build
|
|
repo: vistanarvas/${CI_REPO_NAME}
|
|
tag: test-${CI_COMMIT_BRANCH}-php-${PHP_VERSION}
|
|
build_args:
|
|
- BASE_VERSION=${PHP_VERSION} |