Add panels representing connectivity failure to downstream clusters (… #48
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and publish zdm-ansible releases | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
tags: | |
- 'v*.*.*' | |
- 'v*.*.*-*' | |
jobs: | |
build_and_publish: | |
name: Build and publish docker image | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out source code | |
uses: actions/checkout@v2 | |
# Setup metadata based on the commit/tag that will be used for tagging the image | |
# Only build and publish a commit based tag | |
- name: Setup Docker meta | |
id: meta | |
uses: docker/metadata-action@v3 | |
with: | |
images: | | |
datastax/zdm-ansible | |
flavor: | | |
latest=auto | |
tags: | | |
type=ref,event=branch | |
type=semver,pattern={{version}} | |
type=semver,pattern={{major}}.{{minor}}.x | |
type=semver,pattern={{major}}.x | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to DockerHub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
password: ${{ secrets.DOCKER_HUB_PASSWORD }} | |
- name: Build and push | |
id: docker_build | |
uses: docker/build-push-action@v3 | |
with: | |
file: ./ansible-control-host-docker/Dockerfile | |
context: ./ansible-control-host-docker | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
platforms: linux/amd64 |