Skip to content

Commit

Permalink
Adds Continuous Deployment (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
ultimaweapon committed Mar 2, 2023
1 parent b75a5d2 commit bfcfac9
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
@@ -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
3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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]
Expand Down

0 comments on commit bfcfac9

Please sign in to comment.