Skip to content

Commit fc60252

Browse files
committed
ci: add automatic release notes
1 parent c493676 commit fc60252

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/tagged-release.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
name: "tagged-release"
3+
4+
on:
5+
push:
6+
tags:
7+
- "v*"
8+
9+
jobs:
10+
gh_tagged_release:
11+
runs-on: "ubuntu-latest"
12+
13+
steps:
14+
- name: "Checkout source code"
15+
uses: "actions/[email protected]"
16+
with:
17+
lfs: true
18+
fetch-depth: 0
19+
20+
- uses: "marvinpinto/action-automatic-releases@latest"
21+
with:
22+
repo_token: "${{ secrets.GITHUB_TOKEN }}"
23+
prerelease: false
24+
id: "automatic_releases"

0 commit comments

Comments
 (0)