We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b75a5d2 commit bfcfac9Copy full SHA for bfcfac9
.github/workflows/cd.yml
@@ -0,0 +1,16 @@
1
+name: CD
2
+on:
3
+ push:
4
+ tags:
5
+ - '*'
6
+jobs:
7
+ publish:
8
+ name: Publish
9
+ runs-on: ubuntu-22.04
10
+ env:
11
+ CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
12
+ steps:
13
+ - name: Checkout source
14
+ uses: actions/checkout@v3
15
+ - name: Publish crate
16
+ run: cargo publish
Cargo.toml
@@ -1,6 +1,9 @@
[package]
name = "exfat"
version = "0.1.0"
+description = "Pure Rust implementation of exFAT file system"
+repository = "https://github.com/obhq/exfat"
+license = "MIT"
edition = "2021"
[dependencies]
0 commit comments