Skip to content

Commit 990f74d

Browse files
committed
Add pipeline
1 parent 9bc3cd2 commit 990f74d

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.github/workflows/build.yml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Rust
2+
3+
permissions:
4+
contents: write
5+
6+
on:
7+
push:
8+
tags:
9+
- v[0-9]+.*
10+
11+
env:
12+
CARGO_TERM_COLOR: always
13+
14+
jobs:
15+
create-release:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: actions/checkout@v3
19+
- uses: taiki-e/create-gh-release-action@v1
20+
with:
21+
# (required) GitHub token for creating GitHub Releases.
22+
token: ${{ secrets.GITHUB_TOKEN }}
23+
24+
upload-assets:
25+
runs-on: ubuntu-latest
26+
steps:
27+
- uses: actions/checkout@v3
28+
- uses: taiki-e/upload-rust-binary-action@v1
29+
with:
30+
bin: vonal,vonalc
31+
archive: vonal
32+
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)