Thanks to visit codestin.com Credit goes to github.com
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 38c29ec commit 147940bCopy full SHA for 147940b
2 files changed
.github/release.yml
@@ -0,0 +1,9 @@
1
+changelog:
2
+ exclude:
3
+ authors:
4
+ - dependabot
5
+ - dependabot[bot]
6
+ categories:
7
+ - title: "🚀 Changes"
8
+ labels:
9
+ - "*"
.github/workflows/release.yml
@@ -0,0 +1,21 @@
+name: Build and Release on Tag
+
+on:
+ push:
+ tags:
+ - "v*"
+permissions:
+ contents: write
10
11
+jobs:
12
+ build_and_release:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: Checkout repository
16
+ uses: actions/checkout@v4
17
+ - name: Create Release
18
+ run: |
19
+ gh release create ${{github.ref_name}} --generate-notes
20
+ env:
21
+ GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
0 commit comments