Skip to content

Commit ace05ae

Browse files
committed
adjust
Signed-off-by: Sylvain Hellegouarch <[email protected]>
1 parent 06c766c commit ace05ae

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: Create lueur release
4141
id: create
4242
run: |
43-
rel_url=$(gh release create ${LUEUR_VERSION} -d --notes-file lueur/CHANGELOG.md --latest=false --generate-notes)
43+
rel_url=$(gh release create ${LUEUR_VERSION} -d --prerelease --notes-file lueur/CHANGELOG.md --latest=false --generate-notes)
4444
tag="${rel_url##*/}"
4545
echo "reltag=$tag" >> "$GITHUB_OUTPUT"
4646
env:
@@ -69,6 +69,7 @@ jobs:
6969
7070
promote-the-release:
7171
needs:
72+
- extract-version
7273
- publish-crates
7374
- publish-ebpf-crates
7475
runs-on: ubuntu-latest
@@ -79,7 +80,7 @@ jobs:
7980

8081
- name: Promote lueur release
8182
run: |
82-
gh release edit "$VERSION" --latest=true --draft=false --tag="$VERSION"
83+
gh release edit "$VERSION" --latest=true --draft=false --tag="$VERSION" --discussion-category announcements
8384
env:
8485
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8586
VERSION: ${{needs.extract-version.outputs.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.146"
7+
version = "0.1.147"
88
edition = "2024"
99
rust-version = "1.85"
1010
license-file = "LICENSE"

0 commit comments

Comments
 (0)