Skip to content

Commit 517b783

Browse files
add release binary workflow
1 parent 51e4728 commit 517b783

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/release-binary.yaml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Release
2+
3+
permissions:
4+
contents: write
5+
6+
on:
7+
push:
8+
tags:
9+
- v[0-9]+.*
10+
11+
jobs:
12+
create-release:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v3
16+
- uses: taiki-e/create-gh-release-action@v1
17+
with:
18+
changelog: CHANGELOG.md
19+
token: ${{ secrets.GITHUB_TOKEN }}
20+
21+
upload-assets:
22+
runs-on: ubuntu-latest
23+
steps:
24+
- uses: actions/checkout@v3
25+
- uses: taiki-e/upload-rust-binary-action@v1
26+
with:
27+
bin: wasm-server-runner
28+
archive: $bin-$target
29+
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)