We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08b734d commit 1733e87Copy full SHA for 1733e87
2 files changed
.github/release.yml
@@ -0,0 +1,23 @@
1
+changelog:
2
+ categories:
3
+ - title: Enhancements
4
+ labels:
5
+ - 'enhancement'
6
+
7
+ - title: Bug Fixes
8
9
+ - 'bug'
10
11
+ - title: Chores
12
13
+ - '*'
14
15
+ exclude:
16
17
+ - dependencies
18
+ authors:
19
+ - dependabot
20
21
+ - title: Dependencies
22
23
.github/workflows/release.yml
@@ -0,0 +1,21 @@
+on:
+ push:
+ branches:
+ - master
+ tags:
+ - 'v*.*.*'
+jobs:
+ build:
+ name: Build a package
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+ - uses: softprops/action-gh-release@v1
+ if: startsWith(github.ref, 'refs/tags/') # Run only when tagged like v1.0.1
+ with:
+ files: packages/${{steps.package_name.outputs.package_name}}.zip
+ generate_release_notes: true
0 commit comments