-
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (38 loc) · 898 Bytes
/
docker.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Docker
on:
push:
branches:
- master
- develop
pull_request:
branches:
- master
- develop
schedule:
- cron: '30 12 * * *'
repository_dispatch:
types:
- rebuild
workflow_dispatch:
jobs:
build-suse-qt515:
uses: ./.github/workflows/build-image.yml
with:
name: suse-qt515
secrets:
docker_username: ${{ secrets.DOCKER_USERNAME }}
docker_password: ${{ secrets.DOCKER_PASSWORD }}
build-suse-qt66:
uses: ./.github/workflows/build-image.yml
with:
name: suse-qt66
secrets:
docker_username: ${{ secrets.DOCKER_USERNAME }}
docker_password: ${{ secrets.DOCKER_PASSWORD }}
build-fedora:
uses: ./.github/workflows/build-image.yml
with:
name: fedora
secrets:
docker_username: ${{ secrets.DOCKER_USERNAME }}
docker_password: ${{ secrets.DOCKER_PASSWORD }}