Merge pull request #46 from p-strusiewiczsurmacki-mobica/unit-tests #90
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |