-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yml
39 lines (37 loc) · 1.04 KB
/
config.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
version: 2.1
orbs:
docker: circleci/docker@2.7.2
workflows:
build:
jobs:
- docker/publish:
context: [docker-hub-creds]
docker-password: DOCKER_HUB_ACCESS_TOKEN
docker-username: DOCKER_HUB_USERNAME
name: "Publish 'latest', currently 8.3"
path: ./php8.3
image: thebiggive/php
tag: 'latest'
- docker/publish:
context: [docker-hub-creds]
docker-password: DOCKER_HUB_ACCESS_TOKEN
docker-username: DOCKER_HUB_USERNAME
name: "Publish '8.3'"
path: ./php8.3
image: thebiggive/php
tag: '8.3'
- docker/publish:
context: [docker-hub-creds]
docker-password: DOCKER_HUB_ACCESS_TOKEN
docker-username: DOCKER_HUB_USERNAME
name: "Publish 'dev-8.3'"
path: ./php8.3/dev
image: thebiggive/php
tag: 'dev-8.3'
triggers:
- schedule:
cron: "5 5 * * *"
filters:
branches:
only:
- main