Skip to content

Commit ecfd1cc

Browse files
committed
feat: release workflow
1 parent 290ab66 commit ecfd1cc

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/release.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Release
2+
3+
on:
4+
workflow_dispatch:
5+
6+
permissions:
7+
contents: write
8+
9+
jobs:
10+
release:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- name: Rust Release
15+
uses: manoadamro/rust-release@v1
16+
with:
17+
owner: ${{ github.repository_owner }}
18+
repo: ${{ github.repository }}
19+
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)