icinga2/.github/workflows/docker.yml

30 lines
726 B
YAML
Raw Normal View History

2020-06-19 14:22:06 +02:00
name: Docker image
on:
pull_request: {}
push:
branches:
- master
2020-10-13 18:25:47 +02:00
- 'support/*'
2020-06-19 14:22:06 +02:00
release:
types:
- published
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Cancel previous jobs for the same PR
if: "github.event_name == 'pull_request'"
uses: styfle/cancel-workflow-action@89f242ee29e10c53a841bfe71cc0ce7b2f065abc
with:
workflow_id: deb.yml,docker.yml,raspbian.yml,rpm.yml,windows.yml
access_token: ${{ secrets.GITHUB_TOKEN }}
2020-06-19 14:22:06 +02:00
- name: Docker image
uses: Icinga/docker-icinga2@master
env:
INPUT_TOKEN: '${{ github.token }}'
DOCKER_HUB_PASSWORD: '${{ secrets.DOCKER_HUB_PERSONAL_TOKEN }}'