Files
2022-12-23 13:43:28 +03:00

22 lines
674 B
YAML

name: Docker build and push
on:
push:
branches:
- master
tags:
- v[0-9]+.[0-9]+.[0-9]+
workflow_dispatch:
jobs:
# BUILD DOCKER
build_docker_soldr_elastic_config_image:
uses: vxcontrol/soldr-obs-config/.github/workflows/build-docker-soldr-elastic-config-image.yml@master
if: github.ref_name == 'master' || startsWith(github.ref, 'refs/tags')
secrets: inherit
build_docker_soldr_observability_stack_config_image:
uses: vxcontrol/soldr-obs-config/.github/workflows/build-docker-soldr-observability-stack-config-image.yml@master
if: github.ref_name == 'master' || startsWith(github.ref, 'refs/tags')
secrets: inherit