Skip to content

Commit

Permalink
build(ci): add release workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Berend Sliedrecht <[email protected]>
  • Loading branch information
berendsliedrecht committed Apr 24, 2024
1 parent 8e7abf7 commit a536340
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
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: Crates.io Release

on:
workflow_dispatch:

jobs:
release-crates:
name: Release crates.io
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- run: cargo publish --token ${{ secrets.CARGO_REGISTRY_TOKEN }}
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "secure-env"
name = "animo-secure-env"
version = "0.1.0"
edition = "2021"
rust-version = "1.69"
Expand Down

0 comments on commit a536340

Please sign in to comment.