-
-
Notifications
You must be signed in to change notification settings - Fork 13
37 lines (32 loc) · 992 Bytes
/
docker.yml
File metadata and controls
37 lines (32 loc) · 992 Bytes
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
name: "Docker"
on:
workflow_dispatch:
push:
branches: ["master"]
schedule:
- cron: "0 8 * * 1"
permissions:
contents: read
jobs:
build:
name: "Build"
uses: dockette/.github/.github/workflows/docker.yml@master
secrets: inherit
with:
image: "dockette/web"
tag: "${{ matrix.tag }}"
context: "${{ matrix.context }}"
strategy:
matrix:
include:
- { context: debian-php-70, tag: php-70 }
- { context: debian-php-71, tag: php-71 }
- { context: debian-php-72, tag: php-72 }
- { context: debian-php-73, tag: php-73 }
- { context: debian-php-74, tag: php-74 }
- { context: debian-php-80, tag: php-80 }
- { context: debian-php-81, tag: php-81 }
- { context: debian-php-82, tag: php-82 }
- { context: debian-php-83, tag: php-83 }
- { context: debian-php-84, tag: php-84 }
- { context: debian-php-85, tag: php-85 }