Merge pull request #56 from p-strusiewiczsurmacki-mobica/improved-log… #50
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@v4 | |
with: | |
go-version: "^1.19" | |
- name: Install packages | |
run: sudo apt-get update && sudo apt-get install -y llvm clang libbpf-dev gcc-multilib linux-headers-$(uname -r) | |
- name: Build | |
run: | | |
make build | |
- 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 |