Skip to content

Commit 43d9a85

Browse files
chore: Add cargo publish workflow
1 parent d7bf359 commit 43d9a85

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/cargo-publish.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Cargo Publish
2+
3+
on:
4+
push:
5+
tags:
6+
- v*
7+
8+
env:
9+
CARGO_TERM_COLOR: always
10+
11+
jobs:
12+
cargo-publish:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- uses: actions/checkout@v4
17+
- name: Cargo Publish
18+
run: cargo publish --verbose

0 commit comments

Comments
 (0)