Skip to content

Commit e4a98e7

Browse files
committed
Add create-release test workflow
1 parent 9331c29 commit e4a98e7

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/create-release.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Create Release
2+
3+
on:
4+
push:
5+
branches:
6+
- releases-CI-tests
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v4
14+
- name: Release
15+
uses: softprops/action-gh-release@v2
16+
with:
17+
body_path: ${{ github.workspace }}/CHANGELOG.md
18+
draft: true

0 commit comments

Comments
 (0)