We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df6da79 commit cf5f518Copy full SHA for cf5f518
.github/workflows/release.yml
@@ -0,0 +1,26 @@
1
+name: release
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - "v[0-9]+.[0-9]+.[0-9]+"
7
8
+jobs:
9
+ create-release:
10
+ name: Release crate
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v2
14
+ with:
15
+ fetch-depth: 1
16
17
+ - name: Setup Rust toolchain
18
+ uses: actions-rs/toolchain@v1
19
20
+ toolchain: stable
21
22
+ - name: Publish crate
23
+ uses: actions-rs/cargo@v1
24
25
+ command: publish
26
+ args: --token ${{ secrets.CRATES_IO_TOKEN }}
Cargo.toml
@@ -6,7 +6,7 @@ repository = "https://github.com/omerbenamram/pyo3-file"
license = "MIT/Apache-2.0"
readme = "README.md"
-version = "0.6.0"
+version = "0.7.0"
authors = ["Omer Ben-Amram <[email protected]>"]
edition = "2018"
0 commit comments