Skip to content

Commit fce13e7

Browse files
committed
Add publish workflow
1 parent de504eb commit fce13e7

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

.github/workflows/publish.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: publish
2+
3+
on:
4+
push:
5+
tags:
6+
- "v*"
7+
8+
jobs:
9+
publish-tracel-xtask-macros:
10+
uses: tracel-ai/github-actions/workflows/publish-crate.yml@v1
11+
with:
12+
crate: tracel-xtask-macros
13+
secrets: inherit
14+
# --------------------------------------------------------------------------------
15+
publish-tracel-xtask:
16+
uses: tracel-ai/github-actions/workflows/publish-crate.yml@v1
17+
with:
18+
crate: tracel-xtask
19+
needs:
20+
- tracel-xtask-macros
21+
secrets: inherit

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ members = [
1111

1212
[workspace.package]
1313
edition = "2021"
14-
version = "0.1.0"
14+
version = "1.0.0"
1515
license = "MIT OR Apache-2.0"
1616
readme = "README.md"
1717

0 commit comments

Comments
 (0)