There was an error while loading. Please reload this page.
1 parent 1c31b98 commit ce200beCopy full SHA for ce200be
2 files changed
.github/release.yml
@@ -0,0 +1,14 @@
1
+changelog:
2
+ categories:
3
+ - title: "⚠️ Breaking Changes"
4
+ labels:
5
+ - "breaking change"
6
+ - title: "🚀 Enhancements"
7
8
+ - "enhancement"
9
+ - title: "🐛 Bug Fixes"
10
11
+ - "bug"
12
+ - title: "Other Changes"
13
14
+ - "*"
.github/workflows/build.yaml
@@ -84,6 +84,18 @@ jobs:
84
path: |
85
test/coverage/lcov-report
86
87
+ - name: Create GitHub Release
88
+ if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
89
+ env:
90
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
91
+ run: |
92
+ gh release create "${{ github.ref_name }}" \
93
+ dist/openhab.js \
94
+ dist/openhab.d.ts \
95
+ dist/@openhab-globals.js \
96
+ --title "${{ github.ref_name }}" \
97
+ --generate-notes
98
+
99
jsdoc:
100
name: Publish JSDoc
101
runs-on: "ubuntu-24.04"
0 commit comments