Skip to content

Commit d38d200

Browse files
committed
chore: configure workflow to publish releases
1 parent b8e7899 commit d38d200

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/publish.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
on:
2+
push:
3+
tags:
4+
- "*"
5+
6+
jobs:
7+
publish:
8+
runs-on: ubuntu-latest
9+
10+
permissions:
11+
contents: write
12+
steps:
13+
- uses: actions/checkout@v3
14+
- uses: ghalactic/github-release-from-tag@v5
15+
with:
16+
generateReleaseNotes: "true"
17+
reactions: "rocket"
18+
summaryEnabled: "true"

0 commit comments

Comments
 (0)