Skip to content

Commit 427da3a

Browse files
committed
CI: add automatic release creation on tag push
1 parent 3372ff2 commit 427da3a

1 file changed

Lines changed: 11 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,17 @@ permissions:
99
contents: write
1010

1111
jobs:
12-
release:
12+
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
1323
runs-on: ubuntu-latest
1424
strategy:
1525
matrix:

0 commit comments

Comments
 (0)