diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml new file mode 100644 index 0000000..bbc400f --- /dev/null +++ b/.github/workflows/cd.yml @@ -0,0 +1,16 @@ +name: CD +on: + push: + tags: + - '*' +jobs: + publish: + name: Publish + runs-on: ubuntu-22.04 + env: + CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} + steps: + - name: Checkout source + uses: actions/checkout@v3 + - name: Publish crate + run: cargo publish diff --git a/Cargo.toml b/Cargo.toml index 96b82bc..bb93d21 100644 --- a/Cargo.toml +++ b/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]