File tree Expand file tree Collapse file tree 2 files changed +32
-0
lines changed
Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Original file line number Diff line number Diff line change 7070 with :
7171 command : clippy
7272 args : -- -D warnings
73+
74+ release :
75+ runs-on : ubuntu-latest
76+ needs :
77+ - clippy
78+ - format
79+ - test
80+ steps :
81+ - name : Checkout
82+ uses : actions/checkout@v2
83+ with :
84+ fetch-depth : 0
85+
86+ - name : Release
87+ uses : codfish/semantic-release-action@master
88+ env :
89+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 1+ {
2+ "plugins": [
3+ "@semantic-release/commit-analyzer",
4+ "@semantic-release/release-notes-generator",
5+ "@semantic-release/changelog",
6+ [
7+ "@semantic-release/exec",
8+ {
9+ "prepareCmd": "sed -i 's/^version = \\\".*\\\"/version = \"${nextRelease.version}\"/' Cargo.toml && git add Cargo.toml"
10+ }
11+ ],
12+ "@semantic-release/git",
13+ "@semantic-release/github"
14+ ]
15+ }
You can’t perform that action at this time.
0 commit comments