We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3372ff2 commit 427da3aCopy full SHA for 427da3a
1 file changed
.github/workflows/release.yml
@@ -9,7 +9,17 @@ permissions:
9
contents: write
10
11
jobs:
12
- release:
+ create-release:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v6
16
+ - name: Create release
17
+ env:
18
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
19
+ run: gh release create "$GITHUB_REF_NAME" --generate-notes
20
+
21
+ build:
22
+ needs: create-release
23
runs-on: ubuntu-latest
24
strategy:
25
matrix:
0 commit comments