-
Notifications
You must be signed in to change notification settings - Fork 3
100 lines (98 loc) · 2.55 KB
/
build-publish.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
name: ci
on:
push:
branches:
- 'master'
schedule:
- cron: '0 0 1 * *' # Monthly
workflow_dispatch:
jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push - D7
id: docker_build_7
uses: docker/build-push-action@v4
continue-on-error: true
with:
context: ./7/
push: true
tags: insready/drupal-dev:7
-
name: Build and push - D9
id: docker_build_9
uses: docker/build-push-action@v4
continue-on-error: true
with:
context: ./9/
push: true
tags: |
insready/drupal-dev:9
insready/drupal-dev:latest
-
name: Build and push - D10
id: docker_build_10
uses: docker/build-push-action@v4
continue-on-error: true
with:
context: ./10/
push: true
tags: |
insready/drupal-dev:10
-
name: Build and push - ContentaCMS
id: docker_build_contenta
uses: docker/build-push-action@v4
continue-on-error: true
with:
context: ./contentacms/
push: true
tags: |
insready/drupal-dev:contentacms
-
name: Build and push - Thunder
id: docker_build_thunder
uses: docker/build-push-action@v4
continue-on-error: true
with:
context: ./thunder/
push: true
tags: |
insready/drupal-dev:thunder
-
name: Build and push - Varbase
id: docker_build_varbase
uses: docker/build-push-action@v4
continue-on-error: true
with:
context: ./varbase/
push: true
tags: |
insready/drupal-dev:varbase
-
name: Build and push - govCMS
id: docker_build_govcms
uses: docker/build-push-action@v4
continue-on-error: true
with:
context: ./govcms/
push: true
tags: |
insready/drupal-dev:govcms
-
name: Update repo description
uses: peter-evans/dockerhub-description@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
repository: insready/drupal-dev