-
-
Notifications
You must be signed in to change notification settings - Fork 18
53 lines (45 loc) · 1.59 KB
/
docker.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
name: Build and public docker image
on:
push:
branches: "master"
jobs:
build-and-push-image:
runs-on: ubuntu-latest
# run only when code is compiling and tests are passing
if: "!contains(github.event.head_commit.message, '[skip ci]') && !contains(github.event.head_commit.message, '[ci skip]')"
# steps to perform in job
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: install deps
run: |
sudo apt-get install -y --no-install-recommends \
libelf1 libelf-dev zlib1g-dev libclang-13-dev \
make git clang llvm pkg-config build-essential
- name: build package
run: make build
# setup Docker buld action
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
- name: Login to Github Packages
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build image and push to GitHub Container Registry
uses: docker/build-push-action@v2
with:
# relative path to the place where source code with Dockerfile is located
context: ./
file: dockerfile
platforms: linux/amd64
# Note: tags has to be all lower-case
tags: |
ghcr.io/${{ github.repository_owner }}/libbpf-template:latest
push: true
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}