-
Notifications
You must be signed in to change notification settings - Fork 2
66 lines (57 loc) · 1.73 KB
/
build-docker-images.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
name: Build docker images with assets
on:
workflow_dispatch:
push:
branches: ['master']
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
PANDORA_REPO: cq-pandora/projects
jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Log in to the Container registry
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout assets repository
uses: actions/checkout@v2
with:
path: assets
- name: Build base image
uses: docker/build-push-action@v2
with:
context: assets/
push: true
file: assets/docker/Dockerfile.base
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:base
- name: Build web image
uses: docker/build-push-action@v2
with:
context: assets/docker
push: true
file: assets/docker/Dockerfile.web
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:web
build-args: |
BASE_IMAGE=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:base
- name: Checkout pandora repository
uses: actions/checkout@v2
with:
repository: ${{ env.PANDORA_REPO }}
token: ${{ secrets.GITHUB_TOKEN }}
path: pandora
- name: Build pandora image
uses: docker/build-push-action@v2
with:
context: pandora
push: true
file: assets/docker/Dockerfile.pandora
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:bot
build-args: |
BASE_IMAGE=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:base