-
Notifications
You must be signed in to change notification settings - Fork 0
111 lines (108 loc) · 3.68 KB
/
build.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
101
102
103
104
105
106
107
108
109
110
111
name: Docker Image CI
on:
push:
branches: [ "main" ]
pull_request_target:
branches: [ "main" ]
env:
CONTAINER_REGISTRY: ghcr.io
CONTAINER_REGISTRY_USER: dnlbauer
IMAGE_BASE_NAME: dnlbauer/griesheimtransparent
jobs:
build_solr:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Extract metadata for container tagging
id: meta
uses: docker/metadata-action@v4
with:
images: ${{env.CONTAINER_REGISTRY }}/${{ env.IMAGE_BASE_NAME }}-solr
- name: Login to container registry
uses: docker/login-action@v2
if: ${{ github.event_name != 'pull_request_target' }}
with:
registry: ${{ env.CONTAINER_REGISTRY }}
username: ${{ env.CONTAINER_REGISTRY_USER }}
password: ${{ secrets.CONTAINER_REGISTRY_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v4
with:
context: "./solr"
push: ${{ github.event_name != 'pull_request_target' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outpyts.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
build_frontend:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Extract metadata for container tagging
id: meta
uses: docker/metadata-action@v4
with:
images: ${{env.CONTAINER_REGISTRY }}/${{ env.IMAGE_BASE_NAME }}-frontend
- name: Login to container registry
uses: docker/login-action@v2
if: ${{ github.event_name != 'pull_request_target' }}
with:
registry: ${{ env.CONTAINER_REGISTRY }}
username: ${{ env.CONTAINER_REGISTRY_USER }}
password: ${{ secrets.CONTAINER_REGISTRY_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v4
with:
context: "./frontend"
push: ${{ github.event_name != 'pull_request_target' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outpyts.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
build_scraper:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Extract metadata for container tagging
id: meta
uses: docker/metadata-action@v4
with:
images: ${{env.CONTAINER_REGISTRY }}/${{ env.IMAGE_BASE_NAME }}-scraper
- name: Login to container registry
uses: docker/login-action@v2
if: ${{ github.event_name != 'pull_request_target' }}
with:
registry: ${{ env.CONTAINER_REGISTRY }}
username: ${{ env.CONTAINER_REGISTRY_USER }}
password: ${{ secrets.CONTAINER_REGISTRY_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v4
with:
context: "./scraper"
push: ${{ github.event_name != 'pull_request_target' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outpyts.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
dependabot_auto_merge:
needs:
- build_scraper
- build_frontend
- build_solr
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' && github.event_name == 'pull_request_target' }}
steps:
- name: Automerge dependabot PR
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.DEPENDABOT_TOKEN }}
run: gh pr merge --auto --merge "$PR_URL"