Skip to content

Commit f981c70

Browse files
AmnaSneneaberaud
authored andcommitted
CI: add a workflow in .github/ directory for Docker container packaging
I already tested the workflow: https://github.com/AmnaSnene/dhtnet/pkgs/container/dhtnet%2Fdhtnet Change-Id: I4c21c19d710058e80f17dd6f39080a5d35e174d9
1 parent e61e156 commit f981c70

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

.github/workflows/release-package.yml

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: Release Package
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
env:
8+
REGISTRY: ghcr.io
9+
IMAGE_NAME_DEPS: ${{ github.repository }}/dhtnet
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
name: DHTNet Docker image
15+
permissions:
16+
contents: read
17+
packages: write
18+
19+
steps:
20+
- name: Checkout repository
21+
uses: actions/checkout@v4
22+
23+
- name: Log in to the Container registry
24+
uses: docker/login-action@v3
25+
with:
26+
registry: ${{ env.REGISTRY }}
27+
username: ${{ github.actor }}
28+
password: ${{ secrets.GITHUB_TOKEN }}
29+
30+
- name: Extract metadata (tags, labels) for Docker
31+
id: meta
32+
uses: docker/metadata-action@v5
33+
with:
34+
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME_DEPS }}
35+
36+
- name: Build and push Docker image
37+
uses: docker/build-push-action@v5
38+
with:
39+
context: .
40+
file: ./Dockerfile
41+
push: true
42+
tags: ${{ steps.meta.outputs.tags }}
43+
labels: ${{ steps.meta.outputs.labels }}

0 commit comments

Comments
 (0)