Skip to content

Commit c659749

Browse files
committed
[fix] fix meson install build and CI release Workflow
1 parent bb9cdd0 commit c659749

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -211,8 +211,8 @@ jobs:
211211
echo "" >> release_notes.md
212212
echo "### 📦 Which archive to download?" >> release_notes.md
213213
echo "" >> release_notes.md
214-
echo "- **Binary packages**: Ready-to-use compiled libraries (Linux/macOS/Windows)" >> release_notes.md
215-
echo "- **argus-\*-source.\*** archives**: Clean source distribution for compilation (use these for building from source)" >> release_notes.md
214+
echo "- **argus-${{ needs.prepare.outputs.version }}-bin-\***: Ready-to-use compiled libraries (Linux/macOS/Windows)" >> release_notes.md
215+
echo "- **argus-${{ needs.prepare.outputs.version }}-source.\***: Clean source distribution for compilation (use these for building from source)" >> release_notes.md
216216
echo "- **Source code** links: Raw repository snapshot (contains development files)" >> release_notes.md
217217
echo "" >> release_notes.md
218218
echo "**Full Changelog**: https://github.com/${{ github.repository }}/compare/v${{ needs.prepare.outputs.version }}...HEAD" >> release_notes.md
@@ -221,7 +221,7 @@ jobs:
221221
uses: softprops/action-gh-release@v2
222222
with:
223223
tag_name: ${{ needs.prepare.outputs.version_tag }}
224-
name: "Release ${{ needs.prepare.outputs.version }}"
224+
name: "v${{ needs.prepare.outputs.version }}"
225225
body_path: release_notes.md
226226
files: final-artifacts/*
227227
draft: true

meson.build

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,8 @@ if not regex
3737
else
3838
add_project_arguments('-DARGUS_REGEX', language: 'c')
3939

40-
# Essayer d'abord de trouver PCRE2 via pkg-config (système)
4140
pcre2_dep = dependency('libpcre2-8', required: false)
4241

43-
# Si non trouvé, utiliser le subproject
4442
if not pcre2_dep.found()
4543
pcre2_project = subproject('pcre2', default_options: ['werror=false'])
4644
pcre2_dep = pcre2_project.get_variable('libpcre2_8')
@@ -68,7 +66,6 @@ install_headers('includes/argus.h')
6866
install_subdir(
6967
'includes/argus',
7068
install_dir: get_option('includedir'),
71-
exclude_directories: ['internal']
7269
)
7370

7471
pkg = import('pkgconfig')

0 commit comments

Comments
 (0)