Skip to content

Commit ce70981

Browse files
committed
tag from release
Signed-off-by: Sylvain Hellegouarch <sh@defuze.org>
1 parent 4292290 commit ce70981

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

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

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,27 @@ jobs:
4747
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4848
LUEUR_VERSION: ${{needs.extract-version.outputs.version}}
4949

50+
tag-release:
51+
needs:
52+
- extract-version
53+
- build-and-upload-docker-images
54+
- build-and-upload-docker-ebpf-images
55+
runs-on: ubuntu-24.04
56+
steps:
57+
- uses: actions/checkout@v4
58+
with:
59+
fetch-depth: 0
60+
61+
- name: Release -> tag ${{needs.extract-version.outputs.version}}
62+
env:
63+
VERSION: ${{needs.extract-version.outputs.version}}
64+
run: |
65+
git config user.name 'github-actions[bot]'
66+
git config user.email 'github-actions[bot]@users.noreply.github.com'
67+
git tag -f -a ${VERSION} -F lueur/CHANGELOG.md
68+
git push -f origin ${VERSION}
69+
70+
5071
build-and-upload-assets:
5172
needs:
5273
- extract-version

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.144"
7+
version = "0.1.145"
88
edition = "2024"
99
rust-version = "1.85"
1010
license-file = "LICENSE"

0 commit comments

Comments
 (0)