We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 154d02c commit 0b35ceaCopy full SHA for 0b35cea
.github/workflows/ci.yaml
@@ -93,6 +93,13 @@ jobs:
93
semantic-release
94
echo "::add-path::$(yarn global bin)"
95
96
+ - name: Toolchain
97
+ uses: actions-rs/toolchain@v1
98
+ with:
99
+ profile: minimal
100
+ toolchain: stable
101
+ override: true
102
+
103
- name: Release
104
run: |
105
.releaserc
@@ -6,7 +6,8 @@
6
[
7
"@semantic-release/exec",
8
{
9
- "prepareCmd": "sed -i 's/^version = \\\".*\\\"/version = \"${nextRelease.version}\"/' Cargo.toml && git add Cargo.toml"
+ "prepareCmd": "sed -i 's/^version = \\\".*\\\"/version = \"${nextRelease.version}\"/' Cargo.toml && git add Cargo.toml",
10
+ "publishCmd": "cargo publish --token $CARGO_TOKEN"
11
}
12
],
13
"@semantic-release/git",
0 commit comments