-
Notifications
You must be signed in to change notification settings - Fork 0
56 lines (47 loc) · 1.54 KB
/
build-push-containers.yaml
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
name: Create and publish a Docker image
on:
push:
branches: ["main"]
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
OWNER: nobl9
jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Docker Login
uses: docker/[email protected]
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for load generation image
id: load-meta
uses: docker/[email protected]
with:
images: ${{ env.REGISTRY }}/${{ env.OWNER }}/observability_demo_load
- name: Build and push load Docker images
uses: docker/[email protected]
with:
push: true
context: "./src/load_generation"
tags: ${{ steps.load-meta.outputs.tags }}
labels: ${{ steps.load-meta.outputs.labels }}
- name: Extract metadata (tags, labels) for server image
id: server-meta
uses: docker/[email protected]
with:
images: ${{ env.REGISTRY }}/${{ env.OWNER }}/observability_demo_server
- name: Build and push Docker images
uses: docker/[email protected]
with:
push: true
context: "./src/server"
tags: ${{ steps.server-meta.outputs.tags }}
labels: ${{ steps.server-meta.outputs.labels }}