-
Notifications
You must be signed in to change notification settings - Fork 2
42 lines (37 loc) · 1.02 KB
/
container-image.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
name: container-image
on:
push:
branches:
- main
jobs:
main-image:
name: build "main" image
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: "^1.22"
- name: Create Licenses Report
run: |
make licenses-report
- name: Login to GitHub Container Registry
uses: docker/[email protected]
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/[email protected]
with:
context: .
push: true
tags: ghcr.io/telekom/das-schiff-network-operator:main
- name: Build and push sidecar Docker image
uses: docker/[email protected]
with:
context: .
file: frr-exporter.Dockerfile
push: true
tags: ghcr.io/telekom/frr-exporter:main