Skip to content

Commit 69c92bd

Browse files
committed
push to GHCR
Signed-off-by: Sylvain Hellegouarch <sh@defuze.org>
1 parent e3d21ec commit 69c92bd

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed

.github/workflows/release-lueur-build.yaml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,11 @@ jobs:
8080

8181
- name: Promote lueur release
8282
run: |
83-
gh release edit "$VERSION" --latest=true --draft=false --tag="$VERSION" --discussion-category announcements
83+
gh release edit "$VERSION" --latest=true --draft=false --tag="$VERSION" --discussion-category="Announcements"
8484
env:
8585
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8686
VERSION: ${{needs.extract-version.outputs.version}}
8787

88-
8988
build-and-upload-assets:
9089
needs:
9190
- extract-version
@@ -405,17 +404,18 @@ jobs:
405404
- name: Set up Docker Buildx
406405
uses: docker/setup-buildx-action@v3
407406

408-
- name: Login to Container Registry
407+
- name: Login to GitHub Container Registry
409408
uses: docker/login-action@v3
410409
with:
411-
username: ${{ secrets.DOCKERHUB_USERNAME }}
412-
password: ${{ secrets.DOCKERHUB_TOKEN }}
410+
registry: ghcr.io
411+
username: ${{ github.repository_owner }}
412+
password: ${{ secrets.GITHUB_TOKEN }}
413413

414414
- name: Set up Docker meta
415415
id: meta
416416
uses: docker/metadata-action@v5
417417
with:
418-
images: reboundhow/lueur
418+
images: ghcr.io/rebound-how/lueur
419419
tags: |
420420
type=semver,pattern={{version}},value=${{needs.extract-version.outputs.version}}
421421
@@ -464,17 +464,18 @@ jobs:
464464
- name: Set up Docker Buildx
465465
uses: docker/setup-buildx-action@v3
466466

467-
- name: Login to Container Registry
467+
- name: Login to GitHub Container Registry
468468
uses: docker/login-action@v3
469469
with:
470-
username: ${{ secrets.DOCKERHUB_USERNAME }}
471-
password: ${{ secrets.DOCKERHUB_TOKEN }}
470+
registry: ghcr.io
471+
username: ${{ github.repository_owner }}
472+
password: ${{ secrets.GITHUB_TOKEN }}
472473

473474
- name: Set up Docker meta
474475
id: meta
475476
uses: docker/metadata-action@v5
476477
with:
477-
images: reboundhow/lueur
478+
images: ghcr.io/rebound-how/lueur
478479
flavor: |
479480
latest=false
480481
suffix=-stealth

lueur/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ members = ["lueur-cli", "lueur-ebpf-programs"]
44
default-members = ["lueur-cli"]
55

66
[workspace.package]
7-
version = "0.1.151"
7+
version = "0.1.152"
88
edition = "2024"
99
rust-version = "1.85"
1010
license-file = "LICENSE"

0 commit comments

Comments
 (0)