Skip to content

Commit

Permalink
Adds CD
Browse files Browse the repository at this point in the history
  • Loading branch information
ultimaweapon committed Apr 12, 2024
1 parent 45f36b5 commit e4b97a4
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-latest
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Publish
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 = "erdp"
description = "Crate for display an error and its nested errors"
version = "0.1.0"
license = "MIT"
repository = "https://github.com/ultimaweapon/erdp"
edition = "2021"

[dependencies]

0 comments on commit e4b97a4

Please sign in to comment.