Skip to content

Commit cd60bbf

Browse files
authored
Merge pull request #36 from hyzyla/master
Add release action
2 parents 2314367 + cf9a732 commit cd60bbf

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

.github/workflows/release.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*'
7+
8+
jobs:
9+
release:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v3
14+
15+
- name: Create Release
16+
uses: ncipollo/release-action@v1

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
__pycache__/
2-
.*
3-
!.gitignore
42
TODO.md
53
tags

Readme.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,3 +88,10 @@ if you found find definition or references is not work correctly, just build it
8888
# More
8989

9090
current implementation is basicly work, but may have some rough edges. Please report issue if you have any problem. If you want to help, can check the open issue list. PR is always welcome.
91+
92+
# Development
93+
94+
## Release new version
95+
1. Create a new tag with `git tag -a v0.1.0 -m "release 0.1.0"`
96+
2. Push tag with `git push origin v0.1.0`
97+
3. GitHub action will create release

0 commit comments

Comments
 (0)