Skip to content

Commit d1c3566

Browse files
committed
ci: fix package asset uploads
1 parent 55214d7 commit d1c3566

File tree

1 file changed

+18
-11
lines changed

1 file changed

+18
-11
lines changed

.github/workflows/ci.yml

+18-11
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,9 @@ jobs:
388388
uses: actions/upload-artifact@v4
389389
with:
390390
name: ${{ matrix.mrdocs-release-package-artifact }}
391-
path: build/packages
391+
path: |
392+
build/packages
393+
!build/packages/_CPack_Packages
392394
retention-days: 1
393395

394396
- name: FlameGraph
@@ -432,9 +434,13 @@ jobs:
432434
with:
433435
apt-get: build-essential asciidoctor cmake bzip2 git
434436

435-
- name: Clone mrdocs
437+
- name: Clone MrDocs
436438
uses: actions/checkout@v4
437439

440+
- name: Set Repository Ownership
441+
run: |
442+
git config --global --add safe.directory "$(pwd)"
443+
438444
- name: Install Node.js
439445
uses: actions/setup-node@v4
440446
with:
@@ -453,6 +459,13 @@ jobs:
453459
- name: Install MrDocs from Package
454460
run: |
455461
set -x
462+
463+
# Delete packages/_CPack_Packages files from previous runs
464+
rm -rf packages/_CPack_Packages
465+
466+
# Print tree structure
467+
find packages -print | sed 's;[^/]*/;|____;g;s;____|; |;g'
468+
456469
if [[ ${{ runner.os }} != 'Windows' ]]; then
457470
dest_dir="$HOME/local"
458471
mkdir -p "$dest_dir"
@@ -695,13 +708,6 @@ jobs:
695708
chmod 755 -R $(pwd)/demos
696709
scp -o StrictHostKeyChecking=no -r $(pwd)/demos/* [email protected]:$demo_dir/
697710
698-
- name: Clone MrDocs
699-
uses: actions/checkout@v4
700-
701-
- name: Set Repository Ownership
702-
run: |
703-
git config --global --add safe.directory "$(pwd)"
704-
705711
- name: Create changelog
706712
uses: alandefreitas/cpp-actions/[email protected]
707713
with:
@@ -720,9 +726,10 @@ jobs:
720726
721727
- name: Create GitHub Package Release
722728
if: ${{ github.event_name == 'push' && (contains(fromJSON('["master", "develop"]'), github.ref_name) || startsWith(github.ref, 'refs/tags/')) }}
723-
uses: softprops/action-gh-release@v1
729+
uses: softprops/action-gh-release@v2
724730
with:
725-
files: packages/MrDocs-?.?.?-*.*
731+
files: packages/MrDocs-*.*.*-*.*
732+
fail_on_unmatched_files: true
726733
name: ${{ github.ref_name || github.ref }}
727734
tag_name: ${{ github.ref_name || github.ref }}${{ ((!startsWith(github.ref, 'refs/tags/')) && '-release') || '' }}
728735
body_path: CHANGELOG.md

0 commit comments

Comments
 (0)