Skip to content

Commit 5559aef

Browse files
committed
Add github action to automatically publish new version
1 parent 6c185ff commit 5559aef

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/release.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Release
2+
on:
3+
release:
4+
types: [published]
5+
6+
jobs:
7+
publish:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses actions/checkout@v4
11+
- name: Install toolchain
12+
run: |
13+
rustup toolchain install stable --profile minimal
14+
rustup default stable
15+
- name: Publish
16+
run: cargo publish
17+

0 commit comments

Comments
 (0)