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 ce1e6ed
Showing 1 changed file with 16 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: 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 }}

0 comments on commit ce1e6ed

Please sign in to comment.