22 lines
422 B
YAML
22 lines
422 B
YAML
name: Docker image
|
|
|
|
on:
|
|
release:
|
|
types:
|
|
- published
|
|
schedule:
|
|
# for master, every day at midnight
|
|
- cron: "0 0 * * *"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
docker:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Docker image
|
|
uses: Icinga/docker-icingaweb2@master
|
|
env:
|
|
INPUT_TOKEN: '${{ github.token }}'
|
|
DOCKER_HUB_PASSWORD: '${{ secrets.DOCKER_HUB_PERSONAL_TOKEN }}'
|