Skip to content

Commit b7d61e8

Browse files
committed
chore(test): create automatic release
1 parent 9341391 commit b7d61e8

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Create Release on Push
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
create_release:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Create Release
13+
id: create_release
14+
uses: actions/create-release@v1
15+
env:
16+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
17+
with:
18+
tag_name: ${{ github.sha }}
19+
release_name: Release ${{ github.sha }}
20+
body: |
21+
Automatic release created from commit on the main branch.
22+
draft: false
23+
prerelease: false

0 commit comments

Comments
 (0)