File tree Expand file tree Collapse file tree 2 files changed +33
-3
lines changed
Expand file tree Collapse file tree 2 files changed +33
-3
lines changed Original file line number Diff line number Diff line change 1+ # .github/release.yml
2+
3+ changelog :
4+ exclude :
5+ labels :
6+ - ignore-for-release
7+ authors :
8+ - octocat
9+ categories :
10+ - title : Breaking Changes 🛠
11+ labels :
12+ - breaking-change
13+ - title : Exciting New Features 🎉
14+ labels :
15+ - feat
16+ - title : Documentation changes
17+ labels :
18+ - docs
19+ - example
20+ - test
21+ - title : Other changes
22+ labels :
23+ - refactor
24+ - tooling
Original file line number Diff line number Diff line change @@ -11,10 +11,16 @@ jobs:
1111 steps :
1212 - name : Checkout
1313 uses : actions/checkout@v3
14+ - name : Install dependencies
15+ run : sudo apt-get install tar zip -y
16+ - name : Create tarball
17+ run : tar -czvf header-only.tar.gz include
18+ - name : Create zip
19+ run : zip -r header-only.zip include
1420 - name : Release
1521 uses : softprops/action-gh-release@v1
1622 with :
1723 files : |
18- include/*
19- include/**/*
20- generate_release_notes : false
24+ header-only.zip
25+ header-only.tar.gz
26+ generate_release_notes : true
You can’t perform that action at this time.
0 commit comments