Skip to content

Commit

Permalink
chore: Add cargo publish workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
davidchalifoux committed May 11, 2024
1 parent d7bf359 commit 43d9a85
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/cargo-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Cargo Publish

on:
push:
tags:
- v*

env:
CARGO_TERM_COLOR: always

jobs:
cargo-publish:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Cargo Publish
run: cargo publish --verbose

0 comments on commit 43d9a85

Please sign in to comment.