mirror of https://github.com/Icinga/icinga2.git
Merge pull request #8059 from Icinga/feature/cicd-docker
GitHub actions: build Docker images
This commit is contained in:
commit
65b9040312
|
@ -0,0 +1,21 @@
|
||||||
|
name: Docker image
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request: {}
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
release:
|
||||||
|
types:
|
||||||
|
- published
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
docker:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Docker image
|
||||||
|
uses: Icinga/docker-icinga2@master
|
||||||
|
env:
|
||||||
|
INPUT_TOKEN: '${{ github.token }}'
|
||||||
|
DOCKER_HUB_PASSWORD: '${{ secrets.DOCKER_HUB_PERSONAL_TOKEN }}'
|
Loading…
Reference in New Issue