We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4091248 commit 62dfb66Copy full SHA for 62dfb66
.github/workflows/publish-crate.yml
@@ -16,14 +16,8 @@ jobs:
16
steps:
17
- name: Checkout repository
18
uses: actions/checkout@v2
19
-
20
- - name: Set up Rust
21
- uses: actions-rs/toolchain@v1
+ - uses: ryohidaka/action-cargo-publish@v0.1.0
22
with:
23
- profile: minimal
24
- toolchain: nightly
25
26
- - name: Publish to crates.io
27
- run: cargo publish
28
- env:
29
- CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
+ path: "."
+ token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
+ dry-run: false
Cargo.toml
@@ -1,6 +1,6 @@
1
[package]
2
name = "mneme"
3
-version = "0.3.5"
+version = "0.3.6"
4
authors = ["John Wilger <john@johnwilger.com>"]
5
edition = "2024"
6
description = "An event-sourcing library for Rust projects."
0 commit comments