Added the --dane
option to the command definition ssl_cert
#4489
Workflow file for this run
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: Docker image | |
on: | |
pull_request: {} | |
push: | |
branches: | |
- master | |
release: | |
types: | |
- published | |
concurrency: | |
group: docker-${{ github.event_name == 'push' && github.sha || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
docker-release: | |
if: github.event_name == 'release' | |
concurrency: docker-release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Docker image | |
uses: Icinga/docker-icinga2@master | |
with: | |
dockerhub-token: '${{ secrets.DOCKER_HUB_PERSONAL_TOKEN }}' | |
docker: | |
if: github.event_name != 'release' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Docker image | |
uses: Icinga/docker-icinga2@master | |
with: | |
dockerhub-token: '${{ secrets.DOCKER_HUB_PERSONAL_TOKEN }}' |