We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4ed4db3 + 7bd475b commit efec262Copy full SHA for efec262
.github/workflows/docker.yml
@@ -10,12 +10,23 @@ on:
10
- published
11
12
jobs:
13
+ docker-release:
14
+ if: github.event_name == 'release'
15
+ concurrency: docker-release
16
+ runs-on: ubuntu-latest
17
+
18
+ steps:
19
+ - name: Docker image
20
+ uses: Icinga/docker-icingadb@master
21
+ with:
22
+ dockerhub-token: '${{ secrets.DOCKER_HUB_PERSONAL_TOKEN }}'
23
24
docker:
25
+ if: github.event_name != 'release'
26
runs-on: ubuntu-latest
27
28
steps:
29
- name: Docker image
30
uses: Icinga/docker-icingadb@master
- env:
- INPUT_TOKEN: '${{ github.token }}'
- DOCKER_HUB_PASSWORD: '${{ secrets.DOCKER_HUB_PERSONAL_TOKEN }}'
31
32
0 commit comments