Skip to content

Commit 275b03b

Browse files
committed
Update CI to publish new crates
Signed-off-by: Brian Hardock <[email protected]>
1 parent 32f31aa commit 275b03b

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.github/workflows/release.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
- "v*"
66

77
env:
8-
RUST_VERSION: 1.86
8+
RUST_VERSION: 1.90
99

1010
jobs:
1111
crates:
@@ -26,6 +26,18 @@ jobs:
2626
- uses: rust-lang/[email protected]
2727
id: auth
2828

29+
- name: Publish spin-wasip3-http-macro to crates.io
30+
working-directory: ./crates/spin-wasip3-http-macro
31+
run: cargo publish
32+
env:
33+
CARGO_REGISTRY_TOKEN: ${{ steps.auth.outputs.token }}
34+
35+
- name: Publish spin-wasip3-http to crates.io
36+
working-directory: ./crates/spin-wasip3-http
37+
run: cargo publish
38+
env:
39+
CARGO_REGISTRY_TOKEN: ${{ steps.auth.outputs.token }}
40+
2941
- name: Publish spin-executor to crates.io
3042
working-directory: ./crates/executor
3143
run: cargo publish

0 commit comments

Comments
 (0)