@@ -388,7 +388,9 @@ jobs:
388
388
uses : actions/upload-artifact@v4
389
389
with :
390
390
name : ${{ matrix.mrdocs-release-package-artifact }}
391
- path : build/packages
391
+ path : |
392
+ build/packages
393
+ !build/packages/_CPack_Packages
392
394
retention-days : 1
393
395
394
396
- name : FlameGraph
@@ -432,9 +434,13 @@ jobs:
432
434
with :
433
435
apt-get : build-essential asciidoctor cmake bzip2 git
434
436
435
- - name : Clone mrdocs
437
+ - name : Clone MrDocs
436
438
uses : actions/checkout@v4
437
439
440
+ - name : Set Repository Ownership
441
+ run : |
442
+ git config --global --add safe.directory "$(pwd)"
443
+
438
444
- name : Install Node.js
439
445
uses : actions/setup-node@v4
440
446
with :
@@ -453,6 +459,13 @@ jobs:
453
459
- name : Install MrDocs from Package
454
460
run : |
455
461
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
+
456
469
if [[ ${{ runner.os }} != 'Windows' ]]; then
457
470
dest_dir="$HOME/local"
458
471
mkdir -p "$dest_dir"
@@ -695,13 +708,6 @@ jobs:
695
708
chmod 755 -R $(pwd)/demos
696
709
scp -o StrictHostKeyChecking=no -r $(pwd)/demos/* [email protected] :$demo_dir/
697
710
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
-
705
711
- name : Create changelog
706
712
uses :
alandefreitas/cpp-actions/[email protected]
707
713
with :
@@ -720,9 +726,10 @@ jobs:
720
726
721
727
- name : Create GitHub Package Release
722
728
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
724
730
with :
725
- files : packages/MrDocs-?.?.?-*.*
731
+ files : packages/MrDocs-*.*.*-*.*
732
+ fail_on_unmatched_files : true
726
733
name : ${{ github.ref_name || github.ref }}
727
734
tag_name : ${{ github.ref_name || github.ref }}${{ ((!startsWith(github.ref, 'refs/tags/')) && '-release') || '' }}
728
735
body_path : CHANGELOG.md
0 commit comments