We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13d4d1d commit c8bd690Copy full SHA for c8bd690
.github/workflows/build.yml
@@ -4,7 +4,7 @@ on:
4
push:
5
tags:
6
- 'v*' # Triggers on version tags (e.g., v1.0)
7
- workflow_dispatch: # Allows manual triggering of the workflow
+ workflow_dispatch:
8
9
jobs:
10
build:
@@ -36,8 +36,9 @@ jobs:
36
uses: softprops/action-gh-release@v1
37
with:
38
tag_name: ${{ github.ref_name }}
39
- release_name: Release ${{ github.ref_name }}
+ name: Release ${{ github.ref_name }}
40
body_path: release_notes.md
41
+ token: ${{ secrets.GITHUB_TOKEN }}
42
env:
43
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
44
0 commit comments