Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,13 @@ changelog:
- breaking-change
- title: 🎉 New Features
labels:
- kind/enhancement
- enhancement
- feature
- title: 🐛 Bug Fixes
labels:
- bug
- kind/bugfix
- title: 🔒 Security Fixes
labels:
- security
Expand All @@ -24,13 +26,21 @@ changelog:
- performance
- title: 👒 Dependencies
labels:
- kind/dependencies
- dependencies
- title: 📚 Documentation
labels:
- kind/documentation
- documentation
- title: 🔬 Testing
labels:
- testing
- title: 🪣 Cleanup
labels:
- kind/cleanup
- title: 🧩 Refactoring
labels:
- kind/refactor
- title: 📝 Other Changes
labels:
- "*"
7 changes: 6 additions & 1 deletion .github/workflows/gh-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v7
with:
fetch-depth: 0
fetch-tags: true

- name: Download benchmarks (Windows)
uses: actions/download-artifact@v8
with:
Expand Down Expand Up @@ -62,7 +67,7 @@ jobs:
- name: Create GH Release
if: ${{ !inputs.dry_run }}
run: |
gh release create ${{ inputs.version }} \
gh release create v${{ inputs.version }} \
--generate-notes \
benchmarks_Windows_whp.tar.gz \
benchmarks_Linux_kvm.tar.gz \
Expand Down
Loading