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 882255f commit 16fc2ecCopy full SHA for 16fc2ec
.github/workflows/github_release.yml
@@ -0,0 +1,25 @@
1
+name: Create GitHub Release
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - "v*" # Trigger when a version tag is pushed (e.g., v1.0.0)
7
8
+jobs:
9
+ create-release:
10
+ runs-on: ubuntu-latest
11
12
+ permissions:
13
+ contents: write
14
15
+ steps:
16
+ - name: Checkout Code
17
+ uses: actions/checkout@v4
18
19
+ - name: Create GitHub Release
20
+ uses: ncipollo/release-action@v1
21
+ with:
22
+ tag: ${{ github.ref_name }}
23
+ name: RuboCop Minitest ${{ github.ref_name }}
24
+ bodyFile: relnotes/${{ github.ref_name }}.md
25
+ token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments