-
Notifications
You must be signed in to change notification settings - Fork 1
57 lines (53 loc) · 2.01 KB
/
dockerbuild.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
name: Build Logical backup
on:
push:
branches: [ "fix-logical-backup" ]
tags: [ "v*" ]
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build-and-push-image:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- dockerfile: ./backup-sealed-secrets-keys/Dockerfile
image: ghcr.io/obmondo/backup-sealed-secrets-keys
- dockerfile: ./buildah/Dockerfile
image: ghcr.io/obmondo/buildah
- dockerfile: ./logical-backup/Dockerfile
image: ghcr.io/obmondo/logical-backup
- dockerfile: ./mongodb-backup/Dockerfile
image: ghcr.io/obmondo/mongodb-backup
- dockerfile: ./opensearch-curator/Dockerfile
image: ghcr.io/obmondo/opensearch-curator
- dockerfile: ./postgres-cloudnative-citus/Dockerfile
image: ghcr.io/obmondo/postgres-cloudnative-citus
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/[email protected]
with:
images: ${{ matrix.image }}
- name: Build & push container image
id: docker_build
uses: docker/[email protected]
with:
context: .
file: ${{ matrix.dockerfile }}
labels: ${{ steps.meta.outputs.labels }}
tags: ${{ steps.meta.outputs.tags }}
push: true