Skip to content

Commit bfcfac9

Browse files
authored
Adds Continuous Deployment (#3)
1 parent b75a5d2 commit bfcfac9

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

.github/workflows/cd.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
[package]
22
name = "exfat"
33
version = "0.1.0"
4+
description = "Pure Rust implementation of exFAT file system"
5+
repository = "https://github.com/obhq/exfat"
6+
license = "MIT"
47
edition = "2021"
58

69
[dependencies]

0 commit comments

Comments
 (0)