mirror of https://github.com/Icinga/icinga2.git
38 lines
747 B
YAML
38 lines
747 B
YAML
name: Docker image
|
|
|
|
on:
|
|
pull_request: {}
|
|
push:
|
|
branches:
|
|
- master
|
|
- 'support/*'
|
|
release:
|
|
types:
|
|
- published
|
|
|
|
concurrency:
|
|
group: docker-${{ 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 }}'
|