-
Notifications
You must be signed in to change notification settings - Fork 4
/
releez.yml
53 lines (53 loc) · 1.42 KB
/
releez.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
version: 1.0.0
checklist:
- name: Checkout develop and sync with remote
type: auto
run:
- git checkout develop
- git push
- name: Check syntax
type: auto
run:
- cargo check --release --features="all"
- name: Run tests
type: auto
run:
- cargo test --release --features="all"
- name: Start a new release branch
type: auto
run:
- git flow release start "v${VERSION}"
- name: Make sure code is formatted
type: auto
run:
- cargo fmt
- name: Bump version
type: manual
instructions:
- Please update version with ${VERSION} in Cargo.toml file.
- Please update version with ${VERSION} in README.md file if needed.
- name: Commit changes
type: auto
run:
- git add --all && git commit -m "Bump version"
- name: Finish release branch
type: auto
run:
- git flow release finish -s "v${VERSION}"
- name: Push branches and tags to Github
type: auto
run:
- git checkout master
- git push origin master
- git push origin develop
- git push --tags
- name: Edit tag on Github
type: manual
instructions:
- Tag is pushed to Github(https://github.com/routerify/routerify-websocket/releases). Edit it there and make it a release.
- name: Publish to crates.io
type: auto
confirm: Are you sure to publish it to crates.io?
run:
- cargo publish
- git checkout develop